Skip to main content

Create Human Evaluation

POST 

https://cloud.agenta.ai/api/human-evaluations

Creates a new comparison table document Raises: HTTPException: description Returns: description

Request

Body

required

    app_id App Id (string)required
    variant_ids string[]required
    evaluation_type EvaluationType (string)required

    Possible values: [human_a_b_testing, single_model_test]

    inputs string[]required
    testset_id Testset Id (string)required
    status Status (string)required

Responses

Successful Response

Schema

    id Id (string)required
    variant_ids string[]required
    app_id App Id (string)required
    status Status (string)required
    evaluation_type EvaluationType (string)required

    Possible values: [human_a_b_testing, single_model_test]

curl -L 'https://cloud.agenta.ai/api/human-evaluations' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
-d '{
"app_id": "string",
"variant_ids": [
"string"
],
"evaluation_type": "human_a_b_testing",
"inputs": [
"string"
],
"testset_id": "string",
"status": "string"
}'
Request Collapse all
Base URL
https://cloud.agenta.ai/api
Auth
Body required
{
  "app_id": "string",
  "variant_ids": [
    "string"
  ],
  "evaluation_type": "human_a_b_testing",
  "inputs": [
    "string"
  ],
  "testset_id": "string",
  "status": "string"
}
ResponseClear

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