| 496 | self.function = fn |
| 497 | |
| 498 | class _Msg: |
| 499 | def __init__(self, content: str, tool_calls: list): |
| 500 | self.content = content |
| 501 | self.tool_calls = tool_calls |
| 502 | |
| 503 | class _Choice: |
| 504 | def __init__(self, msg): |
no outgoing calls
no test coverage detected