Upload model version
documentedUpload a new model version with weights and metadata.
POST /management/v1/orgs/{org_name}/models:uploadManagementno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.cerebras.ai/management/v1/orgs/{{$org_name}}/models:upload" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"model_arch_id": "{{$model_arch_id}}", "model": {"weight_uri": "{{$weight_uri}}", "version_aliases": ["{{$version_alias_0}}", "{{$version_alias_1}}"], "system_fingerprint_suffix": "{{$system_fingerprint_suffix}}"}}'