Spaces:
Running
on
Zero
Running
on
Zero
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 |