forked from phoenix-oss/llama-stack-mirror
update EvaluationTask
This commit is contained in:
parent
f107e3229b
commit
d994499f09
3 changed files with 32 additions and 5 deletions
15
docs/_static/llama-stack-spec.html
vendored
15
docs/_static/llama-stack-spec.html
vendored
|
@ -8527,23 +8527,28 @@
|
|||
"type": "object",
|
||||
"properties": {
|
||||
"benchmark_id": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"description": "The benchmark ID to evaluate."
|
||||
},
|
||||
"dataset_id": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"description": "The dataset ID to evaluate."
|
||||
},
|
||||
"data_source": {
|
||||
"$ref": "#/components/schemas/DataSource"
|
||||
"$ref": "#/components/schemas/DataSource",
|
||||
"description": "The data source to evaluate."
|
||||
},
|
||||
"grader_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"description": "The grader IDs to evaluate."
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"title": "EvaluationTask"
|
||||
"title": "EvaluationTask",
|
||||
"description": "A task for evaluation. To specify a task, one of the following must be provided: - `benchmark_id`: Run evaluation task against a benchmark_id - `dataset_id` and `grader_ids`: Run evaluation task against a dataset_id and a list of grader_ids - `data_source` and `grader_ids`: Run evaluation task against a data source (e.g. rows, uri, etc.) and a list of grader_ids"
|
||||
},
|
||||
"GradeRequest": {
|
||||
"type": "object",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue