List Experiments
GET/v2/projects/:projectid/experiments/
List experiments for a specific project.
Parameters:
- projectid (str): The ID of the project.
Returns:
- list[EvaluationInfo]: A list of evaluation information.
Raises:
- HTTPException: If the project or evaluations are not found.
Request
Path Parameters
projectid Projectidrequired
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
- MOD1
- EvaluationError
]
id Id (string)required
name Name (string)required
dataset
object
required
anyOf
string
timestamp Timestamp (string)required
metadata objectrequired
status Status (string)required
Possible values: [PENDING
, RUNNING
, COMPLETED
, FAILED
]
error_info
object
required
anyOf
error_id Error Id (string)required
error_msg Error Msg (string)required
[
{
"id": "string",
"name": "string",
"dataset": "string",
"timestamp": "string",
"metadata": {},
"status": "PENDING",
"error_info": {}
}
]
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...