Skip to main content

Create Testset

POST 

https://cloud.agenta.ai/api/testsets/:app_id

Create a testset with given name and app_name, save the testset to MongoDB.

Args: name (str): name of the test set. app_name (str): name of the application. testset (Dict[str, str]): test set data.

Returns: str: The id of the test set created.

Request

Path Parameters

    app_id App Idrequired

Body

required

    name Name (string)required
    csvdata object[]required

Responses

Successful Response

Schema

    id Id (string)required
    name Name (string)required
    created_at Created At (string)required
curl -L 'https://cloud.agenta.ai/api/testsets/:app_id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
-d '{
"name": "string",
"csvdata": [
{}
]
}'
Request Collapse all
Base URL
https://cloud.agenta.ai/api
Auth
Parameters
— pathrequired
Body required
{
  "name": "string",
  "csvdata": [
    {}
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!