Skip to main content
PUT
/
model-hub
/
eval-groups
/
{id}
/
Update Evaluation Group
curl --request PUT \
  --url https://api.futureagi.com/model-hub/eval-groups/{id}/ \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Secret-Key: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "is_sample": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

X-Api-Key
string
header
required

API Key for authentication. Click here to access API Key

X-Secret-Key
string
header
required

Secret Key for authentication. Click here to access Secret Key

Path Parameters

id
string<uuid>
required

The UUID of the evaluation group to update.

Body

application/json
name
string
description
string | null

Response

Evaluation group updated successfully.

id
string<uuid>
name
string
description
string | null
is_sample
boolean
created_at
string<date-time>
updated_at
string<date-time>