curl --request PATCH \
--url https://api.cerebras.ai/management/v1/orgs/{org_name}/models/{model_arch_id}/versions/{version_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"version_aliases": [
"production",
"v1-stable",
"latest"
]
}
'{
"name": "orgs/my-org/models/llama-3.3-70b/versions/1",
"version_aliases": [
"production",
"v1-stable",
"latest"
]
}curl --request PATCH \
--url https://api.cerebras.ai/management/v1/orgs/{org_name}/models/{model_arch_id}/versions/{version_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"version_aliases": [
"production",
"v1-stable",
"latest"
]
}
'{
"name": "orgs/my-org/models/llama-3.3-70b/versions/1",
"version_aliases": [
"production",
"v1-stable",
"latest"
]
}Management API key generated from the Management API keys section on the API keys page at https://cloud.cerebras.ai. Use the format: Bearer <MANAGEMENT_API_KEY>
Cerebras customer management organization name found under Management API keys on the API keys page at https://cloud.cerebras.ai.
Note: This is not to be confused with org_id.
Name of the model architecture (e.g. llama3.1-8b, llama-3.3-70b).
Autoincrementing integer or user-defined alias to identify model version.
List of aliases for the model version. Must match pattern: ^[a-z][a-zA-Z0-9-]{0,126}[a-z0-9]$.
Aliases must be unique within an organization and model architecture. If an alias is already assigned to another version, it must first be removed from that version before it can be reassigned.
Was this page helpful?