mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-27 10:13:05 +01:00
16 lines
485 B
Python
16 lines
485 B
Python
GENERAL_SEP_PAT = "--------------" # Same length as Langchain's separator
|
|
CODE_BLOCK_PAT = "```\n{}\n```"
|
|
TRIPLE_BACKTICK = "```"
|
|
QUESTION_PAT = "Query:"
|
|
FINAL_QUERY_PAT = "Final Query:"
|
|
THOUGHT_PAT = "Thought:"
|
|
ANSWER_PAT = "Answer:"
|
|
ANSWERABLE_PAT = "Answerable:"
|
|
FINAL_ANSWER_PAT = "Final Answer:"
|
|
QUOTE_PAT = "Quote:"
|
|
QUOTES_PAT_PLURAL = "Quotes:"
|
|
INVALID_PAT = "Invalid:"
|
|
SOURCES_KEY = "sources"
|
|
|
|
DEFAULT_IGNORE_STATEMENT = " Ignore any context documents that are not relevant."
|