diff --git a/src/services/export/CSV_Format.ts b/src/services/export/CSV_Format.ts index 5796fbd..aaf3c34 100644 --- a/src/services/export/CSV_Format.ts +++ b/src/services/export/CSV_Format.ts @@ -8,16 +8,15 @@ function CSV_Formater({ answer, }: InstructionBase): string { return ( - `"${systemMessage ? sanitizer(systemMessage) + ". " : ""}` + - `### Prompt: ${sanitizer(question)}. ` + - `### Response: ${sanitizer(answer)}." \n` + `"${systemMessage ? sanitizer(systemMessage) : ""}",` + + `"${sanitizer(question)}","${sanitizer(answer)}"\n` ); } const QAFormat: DatasetFormat = { formater: CSV_Formater, decorators: { - first: "text\n", + first: "system,prompt,response\n", }, };