LPX55's picture
Create goat.py
7b2b2e4 verified
raw
history blame
272 Bytes
import os
import requests
import json
def call_inference(image_file):
files = {
'media': open(image_file.name, 'rb')
}
response = requests.post(
"https://aiwb-sightmodel.web.val.run",
files=files
)
return response.json()