mirror of https://github.com/langgenius/dify.git
fix:restore correct numeric values for ParamsAutoGenerated (#27252)
This commit is contained in:
parent
73e217ab0d
commit
8e45753c68
|
|
@ -26,8 +26,8 @@ class AgentNodeData(BaseNodeData):
|
|||
|
||||
|
||||
class ParamsAutoGenerated(IntEnum):
|
||||
CLOSE = auto()
|
||||
OPEN = auto()
|
||||
CLOSE = 0
|
||||
OPEN = 1
|
||||
|
||||
|
||||
class AgentOldVersionModelFeatures(StrEnum):
|
||||
|
|
|
|||
Loading…
Reference in New Issue