Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,8 @@ fact_checker_chain_seq = SimpleSequentialChain(
|
|
62 |
|
63 |
# Final Chain: Generating the final answer to the user's question based on the facts and assumptions
|
64 |
template = """In light of the above facts, how would you answer the question '{}'""".format(
|
65 |
-
|
|
|
66 |
)
|
67 |
template = """{facts}\n""" + template
|
68 |
prompt_template = PromptTemplate(input_variables=["facts"], template=template)
|
|
|
62 |
|
63 |
# Final Chain: Generating the final answer to the user's question based on the facts and assumptions
|
64 |
template = """In light of the above facts, how would you answer the question '{}'""".format(
|
65 |
+
"What is the capitol of the usa?"
|
66 |
+
# user_question
|
67 |
)
|
68 |
template = """{facts}\n""" + template
|
69 |
prompt_template = PromptTemplate(input_variables=["facts"], template=template)
|