import requests
url = "https://api.opper.ai/v2/models/aliases/{alias_id}"
payload = {
"name": "<string>",
"fallback_models": ["<string>"],
"description": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)