chore: bump pydantic to 2.11 and pydantic-settings to 2.9 (#15049)
This commit is contained in:
parent
58d9d35515
commit
cbc8ebd8f5
11 changed files with 88 additions and 71 deletions
|
|
@ -36,7 +36,7 @@ class Graph(BaseModel):
|
|||
root_node_id: str = Field(..., description="root node id of the graph")
|
||||
node_ids: list[str] = Field(default_factory=list, description="graph node ids")
|
||||
node_id_config_mapping: dict[str, dict] = Field(
|
||||
default_factory=list, description="node configs mapping (node id: node config)"
|
||||
default_factory=dict, description="node configs mapping (node id: node config)"
|
||||
)
|
||||
edge_mapping: dict[str, list[GraphEdge]] = Field(
|
||||
default_factory=dict, description="graph edge mapping (source node id: edges)"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue