Update app.py
Browse files
app.py
CHANGED
@@ -41,7 +41,14 @@ def store_embeddings(embeddings, metadata):
|
|
41 |
def retrieve_relevant_chunks(query, k=5):
|
42 |
query_embedding = embedding_model.encode([query])
|
43 |
distances, indices = faiss_index.search(query_embedding, k)
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
def ask_groq_api(question, context):
|
47 |
chat_completion = client.chat.completions.create(
|
@@ -79,9 +86,12 @@ if uploaded_files:
|
|
79 |
user_question = st.text_input("Ask a question about the uploaded papers:")
|
80 |
if user_question:
|
81 |
relevant_chunks = retrieve_relevant_chunks(user_question)
|
82 |
-
|
83 |
-
|
84 |
-
|
|
|
|
|
|
|
85 |
|
86 |
if st.button("Generate Scatter Plot"):
|
87 |
st.write("Generating scatter plot for methods vs. results...")
|
@@ -94,4 +104,3 @@ if uploaded_files:
|
|
94 |
st.pyplot(plt)
|
95 |
|
96 |
st.text_area("Annotate Your Insights:", height=100, key="annotations")
|
97 |
-
|
|
|
41 |
def retrieve_relevant_chunks(query, k=5):
|
42 |
query_embedding = embedding_model.encode([query])
|
43 |
distances, indices = faiss_index.search(query_embedding, k)
|
44 |
+
|
45 |
+
# Safeguard: Ensure indices are within bounds of metadata_store
|
46 |
+
valid_results = [
|
47 |
+
(metadata_store[i], distances[0][j])
|
48 |
+
for j, i in enumerate(indices[0])
|
49 |
+
if i < len(metadata_store)
|
50 |
+
]
|
51 |
+
return valid_results
|
52 |
|
53 |
def ask_groq_api(question, context):
|
54 |
chat_completion = client.chat.completions.create(
|
|
|
86 |
user_question = st.text_input("Ask a question about the uploaded papers:")
|
87 |
if user_question:
|
88 |
relevant_chunks = retrieve_relevant_chunks(user_question)
|
89 |
+
if relevant_chunks:
|
90 |
+
context = "\n\n".join([chunk['chunk'] for chunk, _ in relevant_chunks])
|
91 |
+
answer = ask_groq_api(user_question, context)
|
92 |
+
st.write("**Answer:**", answer)
|
93 |
+
else:
|
94 |
+
st.write("No relevant sections found for your question.")
|
95 |
|
96 |
if st.button("Generate Scatter Plot"):
|
97 |
st.write("Generating scatter plot for methods vs. results...")
|
|
|
104 |
st.pyplot(plt)
|
105 |
|
106 |
st.text_area("Annotate Your Insights:", height=100, key="annotations")
|
|