nickmuchi commited on
Commit
cc8d48f
·
1 Parent(s): 7345394

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -130,7 +130,7 @@ def get_answer(question):
130
  chain = load_chain()
131
  result = chain({"question": question, "chat_history": chat_history})
132
 
133
- answer = result["result"]
134
 
135
  # pages
136
  unique_sources = set()
@@ -158,7 +158,7 @@ def get_answer(question):
158
 
159
 
160
  ##### main ####
161
- user_input = st.text_input("Your question", "What is an MBS and who are the main issuer and investors of the MBS market?", key="input")
162
 
163
  col1, col2 = st.columns([10, 1])
164
 
 
130
  chain = load_chain()
131
  result = chain({"question": question, "chat_history": chat_history})
132
 
133
+ answer = result["answer"]
134
 
135
  # pages
136
  unique_sources = set()
 
158
 
159
 
160
  ##### main ####
161
+ user_input = st.text_input("Your question", "What is an MBS and who are the main issuers and investors of the MBS market?", key="input")
162
 
163
  col1, col2 = st.columns([10, 1])
164