Navya-Sree's picture
Create src/macg/llm_base.py
36eac83 verified
raw
history blame contribute delete
144 Bytes
from __future__ import annotations
class LLMClient:
def complete(self, system: str, prompt: str) -> str:
raise NotImplementedError