| 96 | |
| 97 | |
| 98 | class ToolCall(BaseModel): |
| 99 | id: str |
| 100 | """The ID of the tool call.""" |
| 101 | |
| 102 | type: Literal["function"] |
| 103 | """The type of the tool. Currently, only `function` is supported.""" |
| 104 | |
| 105 | function: Function |
| 106 | """The function that the model called.""" |
| 107 | |
| 108 | |
| 109 | class Message(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected