Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
curl -X PUT \
-H "Authorization Bearer $TOGETHER_API_KEY" \
--data '{ "cluster_id": "cluster id", "cluster_type": "kubernetes", "num_gpus": 24 }' \
https://manager.cloud.together.ai/api/v1/gpu_cluster
{
"cluster_id": "<string>",
"status": "UNKNOWN_STATUS"
}
curl -X PUT \
-H "Authorization Bearer $TOGETHER_API_KEY" \
--data '{ "cluster_id": "cluster id", "cluster_type": "kubernetes", "num_gpus": 24 }' \
https://manager.cloud.together.ai/api/v1/gpu_cluster
{
"cluster_id": "<string>",
"status": "UNKNOWN_STATUS"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Was this page helpful?