File size: 16,070 Bytes
8088a69 8cd4f2a ed74a86 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c 8088a69 e1bb68c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | #!/usr/bin/env python3
"""
Unified warmup — generates + checks + saves, one (city × category) at a time.
Replaces prewarm_cache.py and check_cache.py with a single iterative pipeline:
For each combo:
1. Generate LLM recommendations (with per-provider logging)
2. Save all 3 caches ← checkpoint
3. Check items for missing images, fix what we can
4. Save all 3 caches again ← fixes persisted
5. Update progress file (resumable after crash)
Usage:
cd roamify && python scripts/warmup.py
Resume after Ctrl+C:
python scripts/warmup.py # skips completed, re-tries failed
"""
import os
import sys
import time
import json
from datetime import datetime
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "src"))
from dotenv import load_dotenv
load_dotenv(dotenv_path=os.path.join(os.path.dirname(__file__), "..", ".env"), override=True)
from services.recommender import (
get_recommendations_cached,
_LLM_CACHE,
_IMAGE_CACHE,
_GEOCODE_CACHE,
_save_llm_cache,
_save_image_cache,
_save_geocode_cache,
_enrich_one_item,
)
import argparse
# ── Config ──────────────────────────────────────────────────────────────────
CITIES = [
"Paris",
"London",
"Rome",
"Barcelona",
"New York",
"Tokyo",
"Bangkok",
"Sydney",
"Cape Town",
"Rio de Janeiro",
"Istanbul",
"Dubai",
"Seoul",
"Bali",
"Prague",
"San Francisco",
"Marrakech",
"Kyoto",
"Hong Kong",
"Singapore",
"Amsterdam",
"Berlin",
"Vienna",
"Lisbon",
"Budapest",
"Athens",
"Mumbai",
"Mexico City",
]
CATEGORIES = ["Landmark", "Culture", "Nature", "Gems", "Photo", "Food", "Shopping"]
PROGRESS_FILE = os.path.join(os.path.dirname(__file__), "..", ".warmup_progress.json")
def _cat_dict(cat_name: str) -> dict:
"""Build categories dict matching the UI format — only one active."""
return {name: (name == cat_name) for name in CATEGORIES}
def _cat_hash(cat_name: str) -> str:
return json.dumps(_cat_dict(cat_name), sort_keys=True)
# ── Progress file ───────────────────────────────────────────────────────────
def load_progress() -> dict:
if not os.path.exists(PROGRESS_FILE):
return {"version": 1, "combos": {}}
try:
with open(PROGRESS_FILE) as f:
return json.load(f)
except (json.JSONDecodeError, OSError):
return {"version": 1, "combos": {}}
def save_progress(progress: dict) -> None:
with open(PROGRESS_FILE, "w") as f:
json.dump(progress, f, indent=2)
def combo_id(city: str, cat: str) -> str:
return f"{city}::{cat}"
def is_combo_done(progress: dict, cid: str) -> bool:
entry = progress["combos"].get(cid)
if entry is None:
return False
# "success" → skip; "failed" → retry; "pending" → retry
return entry.get("status") == "success"
# ── Health check helpers ────────────────────────────────────────────────────
def _is_city_fallback_url(url: str, items_in_city: list[dict]) -> bool:
"""Check if a URL appears to be a city-level fallback (shared by ≥3 attractions)."""
if not url:
return False
count = sum(1 for it in items_in_city if it.get("image_url") == url)
return count >= 3
def check_items(items: list[dict], city: str) -> dict:
"""Check items for missing/bad enrichment. Returns {'fixed': int, 'still_missing': int, 'fallback_replaced': int}.
Three passes:
1. Items with NO image_url → clear cache + retry enrichment
2. Items with a city fallback photo (shared by ≥3 items) → try to replace
3. Second retry pass for stubborn items (longer delay to avoid rate limits)
"""
fixed = 0
still_missing = 0
fallback_replaced = 0
# Pass 1: Missing images
for item in items:
name = item.get("name", "???")
if not item.get("image_url"):
img_cache_key = (name, city, "")
if img_cache_key in _IMAGE_CACHE:
del _IMAGE_CACHE[img_cache_key]
_enrich_one_item(item, city=city)
if item.get("image_url"):
fixed += 1
else:
still_missing += 1
time.sleep(0.5)
# Pass 2: Detect city-level fallback images (same URL used by ≥3 items)
items_with_urls = [it for it in items if it.get("image_url")]
for item in items_with_urls:
url = item.get("image_url", "")
if _is_city_fallback_url(url, items_with_urls):
name = item.get("name", "???")
# Try to replace the fallback with a specific image
img_cache_key = (name, city, "")
if img_cache_key in _IMAGE_CACHE:
del _IMAGE_CACHE[img_cache_key]
_enrich_one_item(item, city=city)
new_url = item.get("image_url", "")
if new_url and new_url != url:
fallback_replaced += 1
time.sleep(0.5)
# Pass 3: Retry items still missing after pass 1 (longer delay, bypass rate limits)
for item in items:
name = item.get("name", "???")
if not item.get("image_url"):
img_cache_key = (name, city, "")
if img_cache_key in _IMAGE_CACHE:
del _IMAGE_CACHE[img_cache_key]
time.sleep(2.0) # Longer pause before retry
_enrich_one_item(item, city=city)
if item.get("image_url"):
fixed += 1
still_missing -= 1
return {"fixed": fixed, "still_missing": still_missing, "fallback_replaced": fallback_replaced}
def check_duplicate_images(items: list[dict], city: str) -> dict:
"""Find items sharing the same image URL within this batch and re-fetch."""
fixed = 0
still_fallback = 0
url_map: dict[str, list[str]] = {}
for item in items:
url = item.get("image_url", "")
name = item.get("name", "???")
if url:
url_map.setdefault(url, []).append(name)
for url, names in url_map.items():
if len(names) > 1:
for dup_name in names:
img_key = (dup_name, city, "")
if img_key in _IMAGE_CACHE and _IMAGE_CACHE[img_key] == url:
del _IMAGE_CACHE[img_key]
for item in items:
if item.get("name") == dup_name:
_enrich_one_item(item, city=city)
new_url = item.get("image_url", "")
if new_url and new_url != url:
fixed += 1
else:
still_fallback += 1
break
time.sleep(0.5)
return {"fixed": fixed, "still_fallback": still_fallback}
# ── Formatters ──────────────────────────────────────────────────────────────
def fmt_provider_line(log: list[dict]) -> str:
"""Short readable provider chain summary, e.g. 'OR-DS ✅ 1.2s | Gemma ❌ | Gemini ✅ 3.4s'."""
parts = []
for entry in log:
name = entry.get("provider", "?")
label = {
"openrouter-deepseek": "OR-DS",
"ollama-cloud": "Ollama",
"openrouter-gemma": "Gemma",
"gemini": "Gemini",
}.get(name, name)
status = "✅" if entry.get("status") == "success" else "❌"
elapsed = entry.get("elapsed", "?")
items = entry.get("items", 0)
if entry.get("status") == "success":
parts.append(f"{label} {status} {elapsed}s ({items}it)")
else:
parts.append(f"{label} {status} {elapsed}s")
return " | ".join(parts)
# ── Main loop ───────────────────────────────────────────────────────────────
def warmup(cities_filter: list[str] | None = None, fix_only: bool = False):
cities = [c for c in CITIES if not cities_filter or c in cities_filter]
if not cities:
cities = CITIES
print("═" * 60)
print(" Roamify — Unified Warmup")
print(f" {len(cities)} cities × {len(CATEGORIES)} categories = {len(cities) * len(CATEGORIES)} combos")
print(f" Cities: {', '.join(cities)}")
print("═" * 60)
progress = load_progress()
llm_before = len(_LLM_CACHE)
img_before = len(_IMAGE_CACHE)
geo_before = len(_GEOCODE_CACHE)
stats = {"success": 0, "failed": 0, "skipped": 0, "images_fixed": 0}
total = len(cities) * len(CATEGORIES)
combo_idx = 0
for city in cities:
for cat in CATEGORIES:
combo_idx += 1
cid = combo_id(city, cat)
# ── Fix-only mode: skip generation, only re-check images ──
if fix_only:
cat_h = _cat_hash(cat)
key = (city, cat_h)
items = _LLM_CACHE.get(key)
if not items:
print(f" [{combo_idx:>2}/{total}] ⏭️ {city} / {cat} — no cached data to fix")
continue
print(f" [{combo_idx:>2}/{total}] 🔧 {city} / {cat} ({len(items)} items)...", end=" ", flush=True)
# Re-check images on existing items
check_result = check_items(items, city)
dup_result = check_duplicate_images(items, city)
total_fixed = check_result["fixed"] + check_result["fallback_replaced"] + dup_result["fixed"]
if total_fixed > 0:
_save_image_cache()
stats["images_fixed"] += total_fixed
print(f"✅ fixed {total_fixed}")
else:
print("✅ no issues found")
continue
# ── Skip if already successfully done ──
if is_combo_done(progress, cid):
print(f" [{combo_idx:>2}/{total}] ⏭️ {city} / {cat} — already cached")
stats["skipped"] += 1
continue
# ── Clear null cache entries so they get re-generated ──
cat_h = _cat_hash(cat)
key = (city, cat_h)
if key in _LLM_CACHE and _LLM_CACHE[key] is None:
del _LLM_CACHE[key]
# ── Generate ──
provider_log: list[dict] = []
print(f" [{combo_idx:>2}/{total}] 🔍 {city} / {cat}...", end=" ", flush=True)
start = time.time()
try:
result = get_recommendations_cached(
city=city,
num_attractions=19,
categories=_cat_dict(cat),
temperature=0,
provider_log=provider_log,
)
elapsed = time.time() - start
except Exception as e:
elapsed = time.time() - start
print(f"❌ {elapsed:.1f}s — {e}")
progress["combos"][cid] = {
"status": "failed", "elapsed": round(elapsed, 1),
"error": str(e), "timestamp": datetime.now().isoformat(),
}
save_progress(progress)
stats["failed"] += 1
continue
# ── Log provider chain ──
provider_line = fmt_provider_line(provider_log)
if result:
items = len(result)
print(f"✅ {items} items, {elapsed:.1f}s")
print(f" {provider_line}")
# ── Save image & geocode caches (LLM was saved by get_recommendations_cached) ──
_save_image_cache()
_save_geocode_cache()
# ── Health check: missing images ──
check_result = check_items(result, city)
if check_result["fixed"] > 0:
print(f" 📸 Fixed {check_result['fixed']} missing images")
_save_image_cache()
stats["images_fixed"] += check_result["fixed"]
if check_result["fallback_replaced"] > 0:
print(f" 🖼 Replaced {check_result['fallback_replaced']} city-fallback images")
_save_image_cache()
stats["images_fixed"] += check_result["fallback_replaced"]
if check_result["still_missing"] > 0:
print(f" ⚠️ {check_result['still_missing']} still missing (all tiers exhausted)")
# ── Health check: duplicate images within this batch ──
dup_result = check_duplicate_images(result, city)
if dup_result["fixed"] > 0:
print(f" 🖼 Re-fetched {dup_result['fixed']} duplicate images")
_save_image_cache()
stats["images_fixed"] += dup_result["fixed"]
if dup_result["still_fallback"] > 0:
print(f" ⚠️ {dup_result['still_fallback']} still using fallback")
progress["combos"][cid] = {
"status": "success", "items": items,
"elapsed": round(elapsed, 1),
"provider_chain": provider_log,
"timestamp": datetime.now().isoformat(),
}
stats["success"] += 1
else:
print(f"❌ returned None, {elapsed:.1f}s")
print(f" {provider_line}")
progress["combos"][cid] = {
"status": "failed", "elapsed": round(elapsed, 1),
"provider_chain": provider_log,
"error": "all providers returned None",
"timestamp": datetime.now().isoformat(),
}
stats["failed"] += 1
save_progress(progress)
# Nominatim-friendly pause between combos
if combo_idx < total:
time.sleep(1.5)
# ── Final summary ──
llm_new = len(_LLM_CACHE) - llm_before
img_new = len(_IMAGE_CACHE) - img_before
geo_new = len(_GEOCODE_CACHE) - geo_before
print()
print("═" * 60)
print(" Warmup complete!")
print(f" Combos: {stats['success']} ✅ · {stats['failed']} ❌ · {stats['skipped']} ⏭️")
print(f" Images fixed during check: {stats['images_fixed']}")
print(f" Cache entries: LLM {llm_before} → {len(_LLM_CACHE)} (+{llm_new})")
print(f" Images {img_before} → {len(_IMAGE_CACHE)} (+{img_new})")
print(f" Geocode {geo_before} → {len(_GEOCODE_CACHE)} (+{geo_new})")
print()
# Report failed combos
failed_combos = [cid for cid, e in progress["combos"].items() if e.get("status") == "failed"]
if failed_combos:
print(" Failed combos (will retry next run):")
for cid in failed_combos:
print(f" ❌ {cid.replace('::', ' / ')}")
print("═" * 60)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Warmup caches for Roamify")
parser.add_argument("--city", "-c", action="append", dest="cities",
help="Only warmup specific city(ies). Repeat for multiple: -c Tokyo -c Paris")
parser.add_argument("--fix", action="store_true",
help="Fix-only mode: skip LLM generation, only re-check images on cached entries")
args = parser.parse_args()
warmup(cities_filter=args.cities, fix_only=args.fix)
|