mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(nodes): id
field is not an InputField
This commit is contained in:
parent
7b97754271
commit
5fc60d0539
@ -499,7 +499,7 @@ class BaseInvocation(ABC, BaseModel):
|
|||||||
raise MissingInputException(self.__fields__["type"].default, field_name)
|
raise MissingInputException(self.__fields__["type"].default, field_name)
|
||||||
return self.invoke(context)
|
return self.invoke(context)
|
||||||
|
|
||||||
id: str = InputField(description="The id of this node. Must be unique among all nodes.")
|
id: str = Field(description="The id of this node. Must be unique among all nodes.")
|
||||||
is_intermediate: bool = InputField(
|
is_intermediate: bool = InputField(
|
||||||
default=False, description="Whether or not this node is an intermediate node.", input=Input.Direct
|
default=False, description="Whether or not this node is an intermediate node.", input=Input.Direct
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user