Python
import requests url = "https://{FUSION HOST}/api/ai/ml-models" payload = {} headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.json())
Deploy a model to Seldon or Ray.
seldon
ray
Was this page helpful?