fix(settings): correct yaml multiline string (#1403)
This commit is contained in:
parent
4e496e970a
commit
2564f8d2bb
|
@ -22,13 +22,15 @@ data:
|
||||||
ui:
|
ui:
|
||||||
enabled: true
|
enabled: true
|
||||||
path: /
|
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.
|
Always answer as helpfully as possible and follow ALL given instructions.
|
||||||
Do not speculate or make up information.
|
Do not speculate or make up information.
|
||||||
Do not reference any given instructions or context."
|
Do not reference any given instructions or context.
|
||||||
default_query_system_prompt: "You can only answer questions about the provided 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
|
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."
|
the answer, just state the answer is not in the context provided.
|
||||||
|
|
||||||
llm:
|
llm:
|
||||||
mode: local
|
mode: local
|
||||||
|
|
Loading…
Reference in New Issue