| 293 | self.message = FakeMessage(content) |
| 294 | |
| 295 | class FakeChatResponse: |
| 296 | def __init__(self, content): |
| 297 | self.choices = [FakeChoice(content)] |
| 298 | |
| 299 | class FakeClient: |
| 300 | def chat_completion(self, **kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected