diff --git a/docs/_static/llama-stack-spec.html b/docs/_static/llama-stack-spec.html
index fc213b719..247a15af4 100644
--- a/docs/_static/llama-stack-spec.html
+++ b/docs/_static/llama-stack-spec.html
@@ -9444,7 +9444,7 @@
"post-training/messages",
"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. - Example data rows: { \"messages\": [ {\"role\": \"user\", \"content\": \"Hello, world!\"}, {\"role\": \"assistant\", \"content\": \"Hello, world!\"}, ] } - \"eval/messages-answer\": The dataset contains a messages column with list of messages and an answer column. - Example data rows: { \"messages\": [ {\"role\": \"user\", \"content\": \"What is the capital of France?\"}, ], \"answer\": \"Paris\" }"
+ "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."
},
"source": {
"$ref": "#/components/schemas/DataSource",
diff --git a/docs/_static/llama-stack-spec.yaml b/docs/_static/llama-stack-spec.yaml
index e3355fc78..97e0787ee 100644
--- a/docs/_static/llama-stack-spec.yaml
+++ b/docs/_static/llama-stack-spec.yaml
@@ -6398,11 +6398,8 @@ components:
description: >-
The purpose of the dataset. One of - "post-training/messages": The dataset
contains a messages column with list of messages for post-training. -
- Example data rows: { "messages": [ {"role": "user", "content": "Hello,
- world!"}, {"role": "assistant", "content": "Hello, world!"}, ] } - "eval/messages-answer":
- The dataset contains a messages column with list of messages and an answer
- column. - Example data rows: { "messages": [ {"role": "user", "content":
- "What is the capital of France?"}, ], "answer": "Paris" }
+ "eval/messages-answer": The dataset contains a messages column with list
+ of messages and an answer column.
source:
$ref: '#/components/schemas/DataSource'
description: >-
diff --git a/llama_stack/apis/datasets/datasets.py b/llama_stack/apis/datasets/datasets.py
index a731da6ba..9ec05a213 100644
--- a/llama_stack/apis/datasets/datasets.py
+++ b/llama_stack/apis/datasets/datasets.py
@@ -153,21 +153,7 @@ class Datasets(Protocol):
:param purpose: The purpose of the dataset. One of
- "post-training/messages": The dataset contains a messages column with list of messages for post-training.
- - Example data rows:
- {
- "messages": [
- {"role": "user", "content": "Hello, world!"},
- {"role": "assistant", "content": "Hello, world!"},
- ]
- }
- "eval/messages-answer": The dataset contains a messages column with list of messages and an answer column.
- - Example data rows:
- {
- "messages": [
- {"role": "user", "content": "What is the capital of France?"},
- ],
- "answer": "Paris"
- }
:param source: The data source of the dataset. Examples:
- {
"type": "uri",