(self)
| 78 | |
| 79 | @property |
| 80 | def chat(self): |
| 81 | return type('obj', (), { |
| 82 | 'completions': type('obj', (), { |
| 83 | 'create': self.chat_completions_create |
| 84 | })() |
| 85 | })() |
| 86 | |
| 87 | |
| 88 | class TestMARSParallel(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected