clap1 / call_handler.py
arthur-stackadoc-com's picture
added handler
83b1cb8
raw
history blame
378 Bytes
from handler import EndpointHandler
# init handler
my_handler = EndpointHandler(path=".")
# prepare sample payload
non_holiday_payload = {"inputs": "I am quite excited how this will turn out", }
holiday_payload = {"inputs": "Today is a though day"}
# test the handler
non_holiday_pred=my_handler(non_holiday_payload)
# show results
print("holiday_payload", holiday_payload)