File size: 222 Bytes
f028aae
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from handler import EndpointHandler

# init handler
my_handler = EndpointHandler(path=".")

# prepare sample payload
input = {"inputs": "Hello World"}

# test the handler
output = my_handler(input)

print("output", output)