Chat completion tools parameter.
| 232 | |
| 233 | |
| 234 | class ChatCompletionToolsParam(BaseModel): |
| 235 | """ |
| 236 | Chat completion tools parameter. |
| 237 | """ |
| 238 | |
| 239 | type: Literal["function"] = "function" |
| 240 | function: FunctionDefinition |
| 241 | |
| 242 | |
| 243 | class ChatMessage(BaseModel): |
no outgoing calls