File size: 297 Bytes
5f1ae59 5b657ec 5f1ae59 5b657ec 5f1ae59 5b657ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from handler import EndpointHandler
# init handler
my_handler = EndpointHandler(path=".")
# prepare sample payload
payload = {"transcript_file": transcript, "chat_file": chat, "talk_move": talk_move}
# test the handler
response = my_handler(payload)
# show results
print("response", response)
|