File size: 272 Bytes
7b2b2e4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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()
|