Update app.py
Browse files
app.py
CHANGED
@@ -94,7 +94,7 @@ def handle_userinput(user_question):
|
|
94 |
|
95 |
def main():
|
96 |
load_dotenv()
|
97 |
-
st.set_page_config(page_title="Chat with multiple
|
98 |
page_icon=":books:")
|
99 |
st.write(css, unsafe_allow_html=True)
|
100 |
|
@@ -103,7 +103,7 @@ def main():
|
|
103 |
if "chat_history" not in st.session_state:
|
104 |
st.session_state.chat_history = None
|
105 |
|
106 |
-
st.header("Chat with multiple
|
107 |
user_question = st.text_input("Ask a question about your documents:")
|
108 |
if user_question:
|
109 |
handle_userinput(user_question)
|
|
|
94 |
|
95 |
def main():
|
96 |
load_dotenv()
|
97 |
+
st.set_page_config(page_title="Chat with multiple Files",
|
98 |
page_icon=":books:")
|
99 |
st.write(css, unsafe_allow_html=True)
|
100 |
|
|
|
103 |
if "chat_history" not in st.session_state:
|
104 |
st.session_state.chat_history = None
|
105 |
|
106 |
+
st.header("Chat with multiple Files:")
|
107 |
user_question = st.text_input("Ask a question about your documents:")
|
108 |
if user_question:
|
109 |
handle_userinput(user_question)
|