File size: 260 Bytes
acb1db0 ee4f8f7 acb1db0 ee4f8f7 acb1db0 ee4f8f7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from handler import EndpointHandler
# init handler
print('init handler')
my_handler = EndpointHandler(path=".")
p = {"inputs": "I am quite excited how this will turn out", "duration": 2}
print('calling handler')
pred=my_handler(p)
print("done")
print(pred)
|