Deploy a model
import requests
url = "https://{FUSION HOST}/api/ai/ml-models"
payload = { "file": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)This response has no body data.Deploy a model
Deploy a model to Seldon or Ray.
POST
/
ai
/
ml-models
Deploy a model
import requests
url = "https://{FUSION HOST}/api/ai/ml-models"
payload = { "file": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)This response has no body data.Was this page helpful?
⌘I