File size: 182 Bytes
919faf4 |
1 2 3 4 5 6 7 8 9 10 |
from handler import EndpointHandler
my_handler = EndpointHandler(path=".")
prompt = "An astronaut riding horse"
input = { "inputs": prompt }
print("result: ", my_handler(input))
|