Merge remote-tracking branch 'origin/main' into feat/queue-based-graph-engine

This commit is contained in:
-LAN-
2025-09-09 22:16:59 +08:00
14 changed files with 63 additions and 43 deletions

View File

@ -45,7 +45,7 @@ class DefaultValueType(StrEnum):
class DefaultValue(BaseModel):
value: Any
value: Any = None
type: DefaultValueType
key: str

View File

@ -16,7 +16,7 @@ class UpdatedVariable(BaseModel):
name: str
selector: Sequence[str]
value_type: SegmentType
new_value: Any
new_value: Any = None
_T = TypeVar("_T", bound=MutableMapping[str, Any])