File size: 197 Bytes
b8aad58
cf932d8
ef8d70b
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from inference import Chat

class EndpointHandler:
    def __init__(self, path="."):
        self.chat = Chat()

    def __call__(self, inputs):
        return {"output": self.chat.answer(inputs)}