Update app.py
Browse files
app.py
CHANGED
@@ -165,11 +165,11 @@ for chat in st.session_state.history:
|
|
165 |
st.write(f"Bot: {chat['bot']}")
|
166 |
|
167 |
|
168 |
-
st.markdown("What is this app?")
|
169 |
st.markdown("-----------------")
|
170 |
-
st.markdown("
|
171 |
-
st.markdown("
|
172 |
-
|
173 |
-
|
174 |
-
|
|
|
175 |
st.markdown("[Current agenda] Creating fallback for fuzzy keywords for wikipedia search")
|
|
|
165 |
st.write(f"Bot: {chat['bot']}")
|
166 |
|
167 |
|
|
|
168 |
st.markdown("-----------------")
|
169 |
+
st.markdown("What is this app?")
|
170 |
+
st.markdown("""This is a simple RAG application using Wikipedia API.
|
171 |
+
The model for chat is Mistral-7B-Instruct-v0.3.
|
172 |
+
Main libraries: Langchain (text splitting), Chromadb (vector store)
|
173 |
+
This RAG uses query expansion and re-ranking to improve the quality.
|
174 |
+
Feel free to check the files or DM me for any questions. Thank you."""
|
175 |
st.markdown("[Current agenda] Creating fallback for fuzzy keywords for wikipedia search")
|