embodied_explainer / handler.py
ccclemenfff's picture
lllll
ef8d70b
raw
history blame
197 Bytes
from inference import Chat
class EndpointHandler:
def __init__(self, path="."):
self.chat = Chat()
def __call__(self, inputs):
return {"output": self.chat.answer(inputs)}