common_chat.json 865 B

12345678910111213
  1. {
  2. "human_prefix": "Human",
  3. "assistant_prefix": "Assistant",
  4. "context_prompt": "Use the following context as your learned knowledge, inside <context></context> XML tags.\n\n<context>\n{{#context#}}\n</context>\n\nWhen answer to user:\n- If you don't know, just say that you don't know.\n- If you don't know when you are not sure, ask for clarification.\nAvoid mentioning that you obtained the information from the context.\nAnd answer according to the language of the user's question.\n\n",
  5. "histories_prompt": "Here is the chat histories between human and assistant, inside <histories></histories> XML tags.\n\n<histories>\n{{#histories#}}\n</histories>\n\n",
  6. "system_prompt_orders": [
  7. "context_prompt",
  8. "pre_prompt",
  9. "histories_prompt"
  10. ],
  11. "query_prompt": "\n\nHuman: {{#query#}}\n\nAssistant: ",
  12. "stops": ["\nHuman:", "</histories>"]
  13. }