Chinmay Shrivastava
added handler
145ef5a
raw
history blame contribute delete
287 Bytes
from handler import EndpointHandler
# init handler
my_handler = EndpointHandler(path=".")
# test imageurl
imageurl = "https://pet-uploads.adoptapet.com/4/c/9/748519289.jpg"
# call handler
features = my_handler({"inputs": imageurl, "parameters": {"datatype": "image"}})
print(features)