Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
|
2 |
import streamlit as st
|
3 |
from rag_utils import load_faiss_index, get_embedding_model, query_index, generate_answer
|
|
|
4 |
|
5 |
st.title("🎓 Edu Pilot")
|
6 |
|
@@ -11,8 +12,11 @@ user_input = st.text_input("Pose ta question ici :")
|
|
11 |
|
12 |
if user_input:
|
13 |
top_docs = query_index(user_input, index, documents, model_embed)
|
14 |
-
context = "\n".join(top_docs)
|
15 |
print("🧠 Résultats RAG :", top_docs)
|
16 |
response = generate_answer(user_input, context)
|
17 |
st.markdown("### ✨ Réponse du chatbot :")
|
18 |
-
st.write(response)
|
|
|
|
|
|
|
|
1 |
|
2 |
import streamlit as st
|
3 |
from rag_utils import load_faiss_index, get_embedding_model, query_index, generate_answer
|
4 |
+
from rag_utils import nettoyer_context
|
5 |
|
6 |
st.title("🎓 Edu Pilot")
|
7 |
|
|
|
12 |
|
13 |
if user_input:
|
14 |
top_docs = query_index(user_input, index, documents, model_embed)
|
15 |
+
context = nettoyer_context("\n".join(top_docs))
|
16 |
print("🧠 Résultats RAG :", top_docs)
|
17 |
response = generate_answer(user_input, context)
|
18 |
st.markdown("### ✨ Réponse du chatbot :")
|
19 |
+
st.write(response)
|
20 |
+
|
21 |
+
st.markdown("---")
|
22 |
+
st.caption("🔹 Développé avec ❤️ par EduPilot")
|