| import os | |
| # API Configuration | |
| API_KEY = os.environ.get("GOOGLE_API_KEY", "your_api_key_here") | |
| INDEX_PATH = "research_chunks.faiss" | |
| METADATA_PATH = "chunk_metadata.csv" | |
| # Countries to include in analysis | |
| SPECIFIC_COUNTRIES = [ | |
| "Burkina Faso", "Afghanistan", "Mali", "Sudan", "Haiti", "Somalia", | |
| "Niger", "Syria", "South Sudan", "Libya", "Palestinian Territories", | |
| "Central African Republic", "Iraq", "Nigeria", "Lebanon", "Ethiopia", | |
| "Democratic Republic of the Congo", "Cameroon", "Chad", "Mozambique", "Myanmar" | |
| ] | |
| # UI Configuration | |
| APP_TITLE = "Evidence Mapping Social Science Research Methods used in Fragile and Conflict-Affected Settings (FCAS) (2015-2025)" | |
| APP_DESCRIPTION = "AI synthesis across thousands of research documents" | |
| # Default values | |
| DEFAULT_MAX_STUDIES = 6 | |
| DEFAULT_MIN_RELEVANCE = 0.7 | |
| DEFAULT_MIN_YEAR = 2015 | |
| DEFAULT_MAX_YEAR = 2025 | |