SP151 commited on
Commit
01c7920
1 Parent(s): 3242c3b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -112,7 +112,7 @@ chain = RunnablePassthrough.assign(
112
  ) | prompt | ChatOpenAI(model = "gpt-4o") | StrOutputParser()
113
 
114
  st.set_page_config(page_title="Research Assistant/Report Generation")
115
- st.header("Research -> Report")
116
  input = st.text_input("Input Question:", key = "input")
117
  response = chain.invoke({"question": input})
118
  submit = st.button("Ask Question")
 
112
  ) | prompt | ChatOpenAI(model = "gpt-4o") | StrOutputParser()
113
 
114
  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
  response = chain.invoke({"question": input})
118
  submit = st.button("Ask Question")