Spaces:
Running
on
Zero
Running
on
Zero
fix nit
Browse files
app.py
CHANGED
|
@@ -857,7 +857,7 @@ with gr.Blocks(css=APP_CSS, title="LLM GeoGuessr") as demo:
|
|
| 857 |
f"<div style='font-weight:700;font-size:1.25rem;margin-bottom:12px;text-shadow:0 0 12px rgba(8,12,24,0.8);'>Round {round_idx}</div>"
|
| 858 |
f"<div style='margin-bottom:18px;color:#f8fafc;font-size:1rem;line-height:1.55;text-shadow:0 0 10px rgba(8,12,24,0.75);'>{summary_safe}</div>"
|
| 859 |
f"<div style='display:flex;gap:26px;font-size:0.98rem;margin-bottom:18px;flex-wrap:wrap;'>"
|
| 860 |
-
f" <span><strong>Human:</strong> {rnd.get('human_score',0):.0f} pts ( {rnd.get('human_guess',0)
|
| 861 |
f" <span><strong>AI:</strong> {rnd.get('ai_score',0):.0f} pts ( {rnd.get('ai_guess',0)} ) <span style='color:#dbeafe;'>({rnd.get('ai_distance_km',0.0):.1f} km)</span></span>"
|
| 862 |
f"</div>"
|
| 863 |
f"<div style='margin-bottom:16px;font-weight:600;font-size:1rem;color:#e2e8f0;text-shadow:0 0 10px rgba(8,12,24,0.65);'>Totals β Human {total_human:.0f} / AI {total_ai:.0f}</div>"
|
|
|
|
| 857 |
f"<div style='font-weight:700;font-size:1.25rem;margin-bottom:12px;text-shadow:0 0 12px rgba(8,12,24,0.8);'>Round {round_idx}</div>"
|
| 858 |
f"<div style='margin-bottom:18px;color:#f8fafc;font-size:1rem;line-height:1.55;text-shadow:0 0 10px rgba(8,12,24,0.75);'>{summary_safe}</div>"
|
| 859 |
f"<div style='display:flex;gap:26px;font-size:0.98rem;margin-bottom:18px;flex-wrap:wrap;'>"
|
| 860 |
+
f" <span><strong>Human:</strong> {rnd.get('human_score',0):.0f} pts ( {rnd.get('human_guess',0)} ) <span style='color:#dbeafe;'>({rnd.get('human_distance_km',0.0):.1f} km)</span></span>"
|
| 861 |
f" <span><strong>AI:</strong> {rnd.get('ai_score',0):.0f} pts ( {rnd.get('ai_guess',0)} ) <span style='color:#dbeafe;'>({rnd.get('ai_distance_km',0.0):.1f} km)</span></span>"
|
| 862 |
f"</div>"
|
| 863 |
f"<div style='margin-bottom:16px;font-weight:600;font-size:1rem;color:#e2e8f0;text-shadow:0 0 10px rgba(8,12,24,0.65);'>Totals β Human {total_human:.0f} / AI {total_ai:.0f}</div>"
|