Update Human Evaluation
PUT/human-evaluations/:evaluation_id
Updates an evaluation's status.
Raises: HTTPException: If the columns in the test set do not match with the inputs in the variant.
Returns: None: A 204 No Content status code, indicating that the update was successful.
Request
Path Parameters
evaluation_id Evaluation Idrequired
- application/json
Body
required
- EvaluationStatusEnum
statusobject
anyOf
string
Possible values: [EVALUATION_INITIALIZED,
EVALUATION_STARTED, EVALUATION_FINISHED,
EVALUATION_FINISHED_WITH_ERRORS, EVALUATION_FAILED,
EVALUATION_AGGREGATION_FAILED]
Responses
- 200
- 422
Successful Response
- application/json
- Schema
Schema
- any
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...