(self, model_path: str, template: str, system_prompt)
| 15 | |
| 16 | class OpenaiModel(ToolModel): |
| 17 | def __init__(self, model_path: str, template: str, system_prompt): |
| 18 | self.model_path = model_path |
| 19 | self.template = template |
| 20 | self.system_prompt = system_prompt |
| 21 | |
| 22 | def generate( |
| 23 | self, prompts: str, template: str = None, |
nothing calls this directly
no outgoing calls
no test coverage detected