Docs · Recommended Models

Recommended models

Althing can consult the SynthBench public leaderboard to pick the best-ranked model for the kind of research you're running. This closes the credibility loop: scores measured on the bench drive defaults in the harness.

Quick start

# Use the top-ranked model for a specific topic
althing panel run \
  --personas examples/personas.yaml \
  --instrument pricing-discovery \
  --best-model-for "Economy & Work"

# Top-ranked model across a whole dataset (by SPS)
althing panel run ... --best-model-for ":globalopinionqa"

# Topic within a non-default dataset
althing panel run ... --best-model-for "Technology & Digital Life:globalopinionqa"

Before the run, Althing prints a recommendation line to stderr so you can cancel and override:

synthbench: best model for globalopinionqa/Economy & Work → claude-haiku-4-5-20251001 · SPS 0.850 · JSD 0.091 · n=100 · $0.032/100q · cached 0h ago · source=live

How it works

  1. 1 On first use, Althing fetches https://synthbench.org/data/leaderboard.json and caches it at ~/.althing/synthbench-cache.json for 24 hours.
  2. 2 Entries are filtered to the requested dataset (default globalopinionqa), then ranked — by the named topic's score when a topic is given, otherwise by overall SPS.
  3. 3 The top entry's model field is resolved through Althing's alias table (so "haiku" becomes claude-haiku-4-5-20251001) and stamped onto --model for the rest of the pipeline.

Environment knobs

Variable Effect
ALTHING_SYNTHBENCH_URL Override the fetch URL (useful for forks or air-gapped environments).
ALTHING_SYNTHBENCH_OFFLINE=1 Never hit the network; use the cache if present, otherwise skip the recommendation.
ALTHING_SYNTHBENCH_REFRESH=1 Bypass the 24h TTL and force a fresh fetch (ignores the cached ETag).
SYNTH_PANEL_DATA_DIR Override the data dir where the cache lives.

Graceful offline behaviour

No recommendation is ever fatal. --best-model-for is advisory: a bad network day won't take the panel down.

Use-case → top-ranked model

Regenerated from the live leaderboard.json (generated_at 2026-07-13). Picks are the top-ranked runnable single model per filter (the 3-model ensemble leads several rows but isn't a plain --model value). The live data updates continuously — consult the CLI flag or synthbench.org for current picks. Several topics are thinly sampled (small n); treat those as suggestive.

Use case Dataset Topic / filter Top SynthBench pick
General attitudes research globalopinionqa (overall SPS) openai/gpt-4o-mini
Economic / workplace surveys globalopinionqa "Economy & Work" (n=5) google/gemini-2.5-flash
Tech product discovery globalopinionqa "Technology & Digital Life" (n=3) google/gemini-2.5-flash-lite
Health & science messaging globalopinionqa "Health & Science" (n=2) anthropic/claude-sonnet-4.6
International affairs / policy globalopinionqa "International Relations & Security" (n=50) openai/gpt-4o-mini
Trust & wellbeing globalopinionqa "Trust & Wellbeing" (n=7) anthropic/claude-sonnet-4.6

Caveats

Scoping

--best-model-for picks a single model for the whole panel. It is mutually exclusive with --models (which splits the panel across multiple models) — mixing the two is rejected at parse time.