Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -66,7 +66,7 @@ def handle_userinput(user_question):
|
|
| 66 |
|
| 67 |
def main():
|
| 68 |
load_dotenv()
|
| 69 |
-
st.set_page_config(page_title="Chat with
|
| 70 |
page_icon=":books:")
|
| 71 |
st.write(css, unsafe_allow_html=True)
|
| 72 |
|
|
@@ -75,7 +75,7 @@ def main():
|
|
| 75 |
if "chat_history" not in st.session_state:
|
| 76 |
st.session_state.chat_history = None
|
| 77 |
|
| 78 |
-
st.header("Chat with
|
| 79 |
user_question = st.text_input("Ask a question about your documents:")
|
| 80 |
if user_question:
|
| 81 |
handle_userinput(user_question)
|
|
|
|
| 66 |
|
| 67 |
def main():
|
| 68 |
load_dotenv()
|
| 69 |
+
st.set_page_config(page_title="Chat with your meeting notes!",
|
| 70 |
page_icon=":books:")
|
| 71 |
st.write(css, unsafe_allow_html=True)
|
| 72 |
|
|
|
|
| 75 |
if "chat_history" not in st.session_state:
|
| 76 |
st.session_state.chat_history = None
|
| 77 |
|
| 78 |
+
st.header("Chat with your meeting notes! :books:")
|
| 79 |
user_question = st.text_input("Ask a question about your documents:")
|
| 80 |
if user_question:
|
| 81 |
handle_userinput(user_question)
|