| 10 | |
| 11 | |
| 12 | class BaseModel: |
| 13 | def __init__(self): |
| 14 | pass |
| 15 | |
| 16 | @abstractmethod |
| 17 | def get_model_response(self, prompt: str, images: List[str]) -> (bool, str): |
| 18 | pass |
| 19 | |
| 20 | |
| 21 | class OpenAIModel(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected