enoreyes commited on
Commit
b6cec25
1 Parent(s): 6bb53c8

Update chain.py

Browse files
Files changed (1) hide show
  1. chain.py +1 -1
chain.py CHANGED
@@ -97,7 +97,7 @@ def get_new_chain1(vectorstore, rephraser_llm, final_output_llm, isFlan) -> Chai
97
 
98
  flan_template = """
99
  {context}
100
- Based on the above documentation, answer the user's question in markdown. If you can't answer, say "For this topic, I recommend viewing the docs": {question}"""
101
 
102
  PROMPT = PromptTemplate(template=flan_template, input_variables=["question", "context"])
103
 
 
97
 
98
  flan_template = """
99
  {context}
100
+ Based on the above documentation, answer the user's question in markdown: {question}"""
101
 
102
  PROMPT = PromptTemplate(template=flan_template, input_variables=["question", "context"])
103