This commit is contained in:
Ben Keith 2025-12-02 09:58:57 +01:00 committed by GitHub
commit b761637db4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@ class BuiltinTool(Enum):
Primitive = str | int | float | bool | None Primitive = str | int | float | bool | None
RecursiveType = Primitive | list[Primitive] | dict[str, Primitive] type RecursiveType = Primitive | list[RecursiveType] | dict[str, RecursiveType]
class ToolCall(BaseModel): class ToolCall(BaseModel):