SP151 commited on
Commit
43093fa
1 Parent(s): dc4c30e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -115,9 +115,9 @@ st.set_page_config(page_title="Research Assistant/Report Generation")
115
  st.header("Research Question -> Full Report On Topic")
116
  input = st.text_input("Input Question:", key = "input")
117
  submit = st.button("Ask Question")
118
- st.write("Question Submitted! Report currently being generated...")
119
 
120
  if submit:
 
121
  st.subheader("Response:")
122
  response = chain.invoke({"question": input})
123
  st.write(response.strip())
 
115
  st.header("Research Question -> Full Report On Topic")
116
  input = st.text_input("Input Question:", key = "input")
117
  submit = st.button("Ask Question")
 
118
 
119
  if submit:
120
+ st.write("Question Submitted! Report currently being generated...")
121
  st.subheader("Response:")
122
  response = chain.invoke({"question": input})
123
  st.write(response.strip())