Chris4K commited on
Commit
2f58bb4
1 Parent(s): b468ecf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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
- user_question
 
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)