Tool choice forcing a specific function.
| 84 | |
| 85 | |
| 86 | class ToolChoiceFunction(BaseModel): |
| 87 | """Tool choice forcing a specific function.""" |
| 88 | |
| 89 | type: Literal["function"] |
| 90 | function: ToolChoiceFunctionDetail |
| 91 | |
| 92 | |
| 93 | class Usage(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected