chore: bump pydantic to 2.11 and pydantic-settings to 2.9 (#15049)

This commit is contained in:
Bowen Liang 2025-05-08 17:39:51 +08:00 committed by GitHub
commit cbc8ebd8f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 88 additions and 71 deletions

View file

@ -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)"