(self)
| 41 | def chat_completions_create(self, *args, **kwargs): |
| 42 | class MockResponse: |
| 43 | def __init__(self): |
| 44 | self.choices = [type('obj', (object,), {'message': type('obj', (object,), {'content': 'Mock response'})()})] |
| 45 | return MockResponse() |
| 46 | |
| 47 | # Configuration for approaches |
nothing calls this directly
no outgoing calls
no test coverage detected