mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Set Defaults to 1
This commit is contained in:
parent
546aaedbe4
commit
f8f1740668
@ -182,8 +182,8 @@ class IntegerMathInvocation(BaseInvocation):
|
|||||||
operation: INTEGER_OPERATIONS = InputField(
|
operation: INTEGER_OPERATIONS = InputField(
|
||||||
default="ADD", description="The operation to perform", ui_choice_labels=INTEGER_OPERATIONS_LABELS
|
default="ADD", description="The operation to perform", ui_choice_labels=INTEGER_OPERATIONS_LABELS
|
||||||
)
|
)
|
||||||
a: int = InputField(default=0, description=FieldDescriptions.num_1)
|
a: int = InputField(default=1, description=FieldDescriptions.num_1)
|
||||||
b: int = InputField(default=0, description=FieldDescriptions.num_2)
|
b: int = InputField(default=1, description=FieldDescriptions.num_2)
|
||||||
|
|
||||||
@field_validator("b")
|
@field_validator("b")
|
||||||
def no_unrepresentable_results(cls, v: int, info: ValidationInfo):
|
def no_unrepresentable_results(cls, v: int, info: ValidationInfo):
|
||||||
@ -256,8 +256,8 @@ class FloatMathInvocation(BaseInvocation):
|
|||||||
operation: FLOAT_OPERATIONS = InputField(
|
operation: FLOAT_OPERATIONS = InputField(
|
||||||
default="ADD", description="The operation to perform", ui_choice_labels=FLOAT_OPERATIONS_LABELS
|
default="ADD", description="The operation to perform", ui_choice_labels=FLOAT_OPERATIONS_LABELS
|
||||||
)
|
)
|
||||||
a: float = InputField(default=0, description=FieldDescriptions.num_1)
|
a: float = InputField(default=1, description=FieldDescriptions.num_1)
|
||||||
b: float = InputField(default=0, description=FieldDescriptions.num_2)
|
b: float = InputField(default=1, description=FieldDescriptions.num_2)
|
||||||
|
|
||||||
@field_validator("b")
|
@field_validator("b")
|
||||||
def no_unrepresentable_results(cls, v: float, info: ValidationInfo):
|
def no_unrepresentable_results(cls, v: float, info: ValidationInfo):
|
||||||
|
Loading…
Reference in New Issue
Block a user