Spaces:
Runtime error
Runtime error
muhalmutaz
commited on
Commit
·
97c9b39
1
Parent(s):
1b4f1a3
Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ def search(query,top_k=25):
|
|
40 |
|
41 |
for idx, hit in enumerate(hits[0:5]):
|
42 |
if hit["cross-score"] > -3:
|
43 |
-
ans.append(quran[hit['corpus_id']])
|
44 |
if len(ans) == 0:
|
45 |
ans.append("لا يوجد نتائج الرجاء تقريب كلمات البحث")
|
46 |
return "\n\n".join(ans)
|
|
|
40 |
|
41 |
for idx, hit in enumerate(hits[0:5]):
|
42 |
if hit["cross-score"] > -3:
|
43 |
+
ans.append("{"+quran[hit['corpus_id']]+"}"+"\n"+corpus[hit['corpus_id']])
|
44 |
if len(ans) == 0:
|
45 |
ans.append("لا يوجد نتائج الرجاء تقريب كلمات البحث")
|
46 |
return "\n\n".join(ans)
|