v4

latestOpenAPI 3.0.0raw.githubusercontent.com2026-05-23171869.8 KB
Infrastructure

Update model autoscaling group

Update the min, max, and desired capacity of the autoscaling group for a specific model.

put/concurrent_connections/{model_id}

Path parameters

model_idstring required

Model ID

Headers

x-api-keystring required

API Key

Request body

sizeinteger required

Desired capacity for the autoscaling group

Example request

{
  "size": 5
}

Response

Updated connection info

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Operation successful",
  "data": {
    "concurrent_connections": 3,
    "desired_concurrent_connections": 5
  }
}