| 2803 | |
| 2804 | |
| 2805 | class ChatCompletionFunctionCallOption(BaseModel): |
| 2806 | model_config = ConfigDict(extra="ignore") |
| 2807 | |
| 2808 | name: str |
| 2809 | |
| 2810 | def to_template_function_call(self) -> ChatTemplateFunctionCall: |
| 2811 | return {"name": self.name} |
| 2812 | |
| 2813 | |
| 2814 | class ChatCompletionToolChoiceObject(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…