Create Testset
POSThttps://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
- application/json
Body
required
name Name (string)required
csvdata object[]required
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
id Id (string)required
name Name (string)required
created_at Created At (string)required
{
"id": "string",
"name": "string",
"created_at": "string"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
detail
object[]
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
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": [
{}
]
}'
ResponseClear