Fetch List Human Evaluations
GET/human-evaluations
Fetches a list of evaluations, optionally filtered by an app ID.
Args: app_id (Optional[str]): An optional app ID to filter the evaluations.
Returns: List[HumanEvaluation]: A list of evaluations.
Request
Query Parameters
app_id App Idrequired
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id Id (string)required
app_id App Id (string)required
user_id User Id (string)required
user_username User Username (string)required
evaluation_type Evaluation Type (string)required
variant_ids string[]required
variant_names string[]required
variants_revision_ids string[]required
revisions string[]required
testset_id Testset Id (string)required
testset_name Testset Name (string)required
status Status (string)required
created_at date-timerequired
updated_at date-timerequired
[
{
"id": "string",
"app_id": "string",
"user_id": "string",
"user_username": "string",
"evaluation_type": "string",
"variant_ids": [
"string"
],
"variant_names": [
"string"
],
"variants_revision_ids": [
"string"
],
"revisions": [
"string"
],
"testset_id": "string",
"testset_name": "string",
"status": "string",
"created_at": "2024-08-19T07:55:04.307Z",
"updated_at": "2024-08-19T07:55:04.308Z"
}
]
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...