mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-31 10:40:02 +00:00
Merge branch 'pr1573' into api_2
This commit is contained in:
commit
ce0784be0c
3 changed files with 20 additions and 7 deletions
4
docs/_static/llama-stack-spec.html
vendored
4
docs/_static/llama-stack-spec.html
vendored
|
|
@ -6811,6 +6811,7 @@
|
|||
"type": "string",
|
||||
"enum": [
|
||||
"post-training/messages",
|
||||
"eval/question-answer",
|
||||
"eval/messages-answer"
|
||||
],
|
||||
"title": "DatasetPurpose",
|
||||
|
|
@ -9885,9 +9886,10 @@
|
|||
"type": "string",
|
||||
"enum": [
|
||||
"post-training/messages",
|
||||
"eval/question-answer",
|
||||
"eval/messages-answer"
|
||||
],
|
||||
"description": "The purpose of the dataset. One of - \"post-training/messages\": The dataset contains a messages column with list of messages for post-training. - \"eval/messages-answer\": The dataset contains a messages column with list of messages and an answer column."
|
||||
"description": "The purpose of the dataset. One of - \"post-training/messages\": The dataset contains a messages column with list of messages for post-training. - \"eval/question-answer\": The dataset contains a question column and an answer column for evaluation. - \"eval/messages-answer\": The dataset contains a messages column with list of messages and an answer column for evaluation."
|
||||
},
|
||||
"source": {
|
||||
"$ref": "#/components/schemas/DataSource",
|
||||
|
|
|
|||
7
docs/_static/llama-stack-spec.yaml
vendored
7
docs/_static/llama-stack-spec.yaml
vendored
|
|
@ -4716,6 +4716,7 @@ components:
|
|||
type: string
|
||||
enum:
|
||||
- post-training/messages
|
||||
- eval/question-answer
|
||||
- eval/messages-answer
|
||||
title: DatasetPurpose
|
||||
description: >-
|
||||
|
|
@ -6776,12 +6777,14 @@ components:
|
|||
type: string
|
||||
enum:
|
||||
- post-training/messages
|
||||
- eval/question-answer
|
||||
- eval/messages-answer
|
||||
description: >-
|
||||
The purpose of the dataset. One of - "post-training/messages": The dataset
|
||||
contains a messages column with list of messages for post-training. -
|
||||
"eval/messages-answer": The dataset contains a messages column with list
|
||||
of messages and an answer column.
|
||||
"eval/question-answer": The dataset contains a question column and an
|
||||
answer column for evaluation. - "eval/messages-answer": The dataset contains
|
||||
a messages column with list of messages and an answer column for evaluation.
|
||||
source:
|
||||
$ref: '#/components/schemas/DataSource'
|
||||
description: >-
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue