GET /api/silicon-navigator/gpu-list

Get GPU List information.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Responses

  • 200: Successful Response
null

GET /api/silicon-navigator/gpu-specs/params

Get GPU specs params.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Responses

  • 200: Successful Response
null

POST /api/silicon-navigator/gpu-specs

Get GPU specs list.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
filterArrayNofilter list.
order_byArrayNoOrder by list (Enum: “asc” “desc”)
paginateArrayNoPagination

Request Example

{
  "filter": [],
  "order_by": [],
  "paginate": {
    "num_per_page": 50,
    "page_num": 1
  }
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}