From efeaa00bb45554f5a956976cf852a1c89a1a4b3f Mon Sep 17 00:00:00 2001 From: Chirag Jain Date: Tue, 27 Aug 2024 19:08:54 +0530 Subject: [PATCH] Update docs/dataset-formats/conversation.qmd Co-authored-by: NanoCode012 --- docs/dataset-formats/conversation.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dataset-formats/conversation.qmd b/docs/dataset-formats/conversation.qmd index 8263c53af..c1d0522d1 100644 --- a/docs/dataset-formats/conversation.qmd +++ b/docs/dataset-formats/conversation.qmd @@ -78,7 +78,7 @@ Chat Template strategy uses a jinja2 template that converts a list of messages i Conversational data would normally look like follows: ```{.json filename="data.jsonl"} -{"messages": [{"role": "...", "content": "..."}]} +{"conversations": [{"from": "...", "value": "..."}]} ``` with roles usually being system, user, assistant, etc.