Navya-Sree commited on
Commit
36eac83
·
verified ·
1 Parent(s): f21ae72

Create src/macg/llm_base.py

Browse files
Files changed (1) hide show
  1. src/macg/llm_base.py +5 -0
src/macg/llm_base.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from __future__ import annotations
2
+
3
+ class LLMClient:
4
+ def complete(self, system: str, prompt: str) -> str:
5
+ raise NotImplementedError