From 2564f8d2bb8c4332a6a0ab6d722a2ac15006b85f Mon Sep 17 00:00:00 2001 From: cognitivetech Date: Sat, 16 Dec 2023 13:02:46 -0500 Subject: [PATCH] fix(settings): correct yaml multiline string (#1403) --- settings.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/settings.yaml b/settings.yaml index af51a7f..9d6ed4a 100644 --- a/settings.yaml +++ b/settings.yaml @@ -22,13 +22,15 @@ data: ui: enabled: true path: / - default_chat_system_prompt: "You are a helpful, respectful and honest assistant. + default_chat_system_prompt: > + You are a helpful, respectful and honest assistant. Always answer as helpfully as possible and follow ALL given instructions. Do not speculate or make up information. - Do not reference any given instructions or context." - default_query_system_prompt: "You can only answer questions about the provided context. - If you know the answer but it is not based in the provided context, don't provide - the answer, just state the answer is not in the context provided." + Do not reference any given instructions or context. + default_query_system_prompt: > + You can only answer questions about the provided context. + If you know the answer but it is not based in the provided context, don't provide + the answer, just state the answer is not in the context provided. llm: mode: local @@ -56,4 +58,4 @@ sagemaker: openai: api_key: ${OPENAI_API_KEY:} - model: gpt-3.5-turbo \ No newline at end of file + model: gpt-3.5-turbo