Update app.py
Browse files
app.py
CHANGED
@@ -24,10 +24,18 @@ metadata_store = []
|
|
24 |
# Function to identify unanswered questions based on comparative analysis of multiple papers
|
25 |
def identify_research_gaps(chunks):
|
26 |
unanswered_questions = []
|
27 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
for chunk in chunks:
|
29 |
-
if
|
30 |
unanswered_questions.append(chunk)
|
|
|
31 |
return "\n".join(unanswered_questions) if unanswered_questions else "No specific unanswered questions found."
|
32 |
|
33 |
# Function to extract text from PDFs
|
|
|
24 |
# Function to identify unanswered questions based on comparative analysis of multiple papers
|
25 |
def identify_research_gaps(chunks):
|
26 |
unanswered_questions = []
|
27 |
+
# List of keywords related to research gaps
|
28 |
+
keywords = [
|
29 |
+
"future research", "unanswered questions", "limitations", "need for more research",
|
30 |
+
"open questions", "further investigation", "research gap", "areas for improvement",
|
31 |
+
"unknowns", "unexplored", "unresolved issues"
|
32 |
+
]
|
33 |
+
|
34 |
+
# Search for chunks containing any of the keywords
|
35 |
for chunk in chunks:
|
36 |
+
if any(keyword in chunk.lower() for keyword in keywords):
|
37 |
unanswered_questions.append(chunk)
|
38 |
+
|
39 |
return "\n".join(unanswered_questions) if unanswered_questions else "No specific unanswered questions found."
|
40 |
|
41 |
# Function to extract text from PDFs
|