Tool call response.
| 114 | |
| 115 | |
| 116 | class ToolCall(BaseModel): |
| 117 | """Tool call response.""" |
| 118 | |
| 119 | id: str |
| 120 | type: Literal["function"] = "function" |
| 121 | function: FunctionResponse |
| 122 | |
| 123 | |
| 124 | class UsageInfo(BaseModel): |
no outgoing calls
no test coverage detected