(self)
| 2796 | function: ChatCompletionToolFunction |
| 2797 | |
| 2798 | def to_template_tool(self) -> ChatTemplateTool: |
| 2799 | return { |
| 2800 | "type": self.type, |
| 2801 | "function": self.function.to_template_function(), |
| 2802 | } |
| 2803 | |
| 2804 | |
| 2805 | class ChatCompletionFunctionCallOption(BaseModel): |
no test coverage detected