Spaces:
Sleeping
Sleeping
Elia Wäfler
commited on
Update DocVerifyRAG.py
Browse files- DocVerifyRAG.py +2 -2
DocVerifyRAG.py
CHANGED
@@ -87,7 +87,7 @@ def safe_vec_store():
|
|
87 |
|
88 |
def main():
|
89 |
load_dotenv()
|
90 |
-
st.set_page_config(page_title="
|
91 |
st.write(css, unsafe_allow_html=True)
|
92 |
|
93 |
st.subheader("Your documents")
|
@@ -99,7 +99,7 @@ def main():
|
|
99 |
if "chat_history" not in st.session_state:
|
100 |
st.session_state.chat_history = None
|
101 |
|
102 |
-
st.header("
|
103 |
user_question = st.text_input("Ask a question about your documents:")
|
104 |
if user_question:
|
105 |
handle_userinput(user_question)
|
|
|
87 |
|
88 |
def main():
|
89 |
load_dotenv()
|
90 |
+
st.set_page_config(page_title="DOC Verify RAG", page_icon=":hospital:")
|
91 |
st.write(css, unsafe_allow_html=True)
|
92 |
|
93 |
st.subheader("Your documents")
|
|
|
99 |
if "chat_history" not in st.session_state:
|
100 |
st.session_state.chat_history = None
|
101 |
|
102 |
+
st.header("DOC Verify RAG :hospital:")
|
103 |
user_question = st.text_input("Ask a question about your documents:")
|
104 |
if user_question:
|
105 |
handle_userinput(user_question)
|