kenken999's picture
d
3d2aa58
raw
history blame
229 Bytes
class Interpreter:
def __init__(self):
self.llm = None
def reset(self):
self.llm = None
def chat(self, message, display=False, stream=True):
# implementation of the chat function
pass