ababio commited on
Commit
22fab8b
·
verified ·
1 Parent(s): f7b62a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -46,8 +46,13 @@ def query_annual_report(query):
46
  response = query_engine.query(query)
47
  return response.response
48
 
49
- # Streamlit app setup
50
- st.title("Annual Reports-BD-Firms")
 
 
 
 
 
51
 
52
  # Initialize chat history
53
  if "messages" not in st.session_state:
 
46
  response = query_engine.query(query)
47
  return response.response
48
 
49
+ # Adjust the title based on the selected model
50
+ st.header(f"`{model_display_name}` Model")
51
+
52
+ with st.expander("About this App"):
53
+ st.write(f"""
54
+ This ChatApp allows users to communicate with custom Annual Report from BD Firms.
55
+ """)
56
 
57
  # Initialize chat history
58
  if "messages" not in st.session_state: