PUT
/
api
/
v1
/
gpu_cluster
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
cluster_id
string
cluster_type
enum<string>
Available options:
UNKNOWN_TYPE,
KUBERNETES,
SLURM
num_gpus
integer

Response

200 - application/json

OK

cluster_id
string
status
enum<string>
Available options:
UNKNOWN_STATUS,
PENDING,
QUEUED,
WAITING_CONTROL_PLANE,
WAITING_DATA_PLANE,
READY,
FAILED