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

@ -39,7 +39,7 @@ class SubCondition(BaseModel):
class SubVariableCondition(BaseModel):
logical_operator: Literal["and", "or"]
conditions: list[SubCondition] = Field(default=list)
conditions: list[SubCondition] = Field(default_factory=list)
class Condition(BaseModel):