(self, model_name)
| 21 | class OpenAIModelManager: |
| 22 | |
| 23 | def __init__(self, model_name): |
| 24 | self.model_name = model_name |
| 25 | assert openai.api_key is not None |
| 26 | |
| 27 | def infer_generate(self, input_text, max_tokens=2048): |
| 28 | output = completion_with_backoff( |
nothing calls this directly
no outgoing calls
no test coverage detected