Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -46,8 +46,13 @@ def query_annual_report(query):
|
|
46 |
response = query_engine.query(query)
|
47 |
return response.response
|
48 |
|
49 |
-
#
|
50 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
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:
|