MCPcopy Create free account
hub / github.com/TencentQQGYLab/AppAgent / BaseModel

Class BaseModel

scripts/model.py:12–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10
11
12class 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
21class OpenAIModel(BaseModel):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected