Update app.py
Browse files
app.py
CHANGED
|
@@ -55,7 +55,7 @@ APP_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
| 55 |
|
| 56 |
SIMILARITY_THRESHOLD = 40.0 # Default similarity threshold
|
| 57 |
MAX_JOBS_TO_DISPLAY_PER_PAGE = 5
|
| 58 |
-
TOP_N_RESULTS_FROM_SEARCH = int(os.getenv('TOP_N_RESULTS_FOR_APP_QUERY', '
|
| 59 |
CANONICAL_LANGUAGES_FOR_FILTER = ["English", "Danish", "German", "Spanish", "French", "Norwegian", "Swedish"]
|
| 60 |
|
| 61 |
# --- Helper Functions ---
|
|
|
|
| 55 |
|
| 56 |
SIMILARITY_THRESHOLD = 40.0 # Default similarity threshold
|
| 57 |
MAX_JOBS_TO_DISPLAY_PER_PAGE = 5
|
| 58 |
+
TOP_N_RESULTS_FROM_SEARCH = int(os.getenv('TOP_N_RESULTS_FOR_APP_QUERY', '200')) # How many to fetch initially
|
| 59 |
CANONICAL_LANGUAGES_FOR_FILTER = ["English", "Danish", "German", "Spanish", "French", "Norwegian", "Swedish"]
|
| 60 |
|
| 61 |
# --- Helper Functions ---
|