Update config.py
Browse files
config.py
CHANGED
@@ -10,6 +10,11 @@ logging.basicConfig(
|
|
10 |
]
|
11 |
)
|
12 |
|
|
|
|
|
|
|
|
|
|
|
13 |
# Model configuration
|
14 |
MODEL_NAME = 'paraphrase-multilingual-MiniLM-L12-v2'
|
15 |
CHUNK_SIZE = 50 # For memory management
|
|
|
10 |
]
|
11 |
)
|
12 |
|
13 |
+
# Quran data configuration (included for compatibility with app.py, though not used by quran_search.py)
|
14 |
+
QURAN_DATA_SOURCES = [
|
15 |
+
"https://cdn.jsdelivr.net/npm/[email protected]/dist/quran.json" # Fallback, kept for app.py
|
16 |
+
]
|
17 |
+
|
18 |
# Model configuration
|
19 |
MODEL_NAME = 'paraphrase-multilingual-MiniLM-L12-v2'
|
20 |
CHUNK_SIZE = 50 # For memory management
|