๐ก Concepts (Chameleon's Day-1 extension)
The at-home guessing game returns โ now with an official LLM judge API and a call budget.
๐The task, in plain English
Contest Day 1, 2025: the Chameleon word/concept-guessing idea extended โ contestants worked with hint generation / harder guessing, and were given an official LLM API proxy ($10 credits โ 12,500 judge calls) as part of the task. The exam: combine embeddings with prompt engineering under a budget.
๐งThe baseline you're given
A working pipeline from the at-home version (embed + compare) plus starter code for calling the judge API. Limitation: naive use burns the call budget fast, and unprompted LLM calls give noisy results.
๐Baseline vs. solution
- Spends judge calls freely, one candidate at a time
- Vague prompts โ inconsistent judgments
- Filter cheap, judge expensive: use free embeddings to shortlist candidates, spend LLM calls only on the shortlist
- Tight, structured prompts ("Answer only YES or NO") โ parseable outputs
- Track budget in code; decide spend-per-item up front
- Cache every (input โ judgment) pair; never pay twice
๐งExplain it like I'm brand new
The budgeted-LLM pattern: when an LLM call costs something (money, queries, time), sandwich it: cheap tools (embeddings) narrow 1,000 options to 10, the expensive LLM picks among the 10, and a cache remembers everything. Recognize this? It's exactly John Wilkins 2026 โ precompute what's free, spend the budget only where it decides something.
๐ฌThe Gemma 4 playthrough (2000-token limit)
I have 12500 LLM judge calls, 400 test items, and a shortlist of 20 candidates per item from embeddings. Judging one candidate = 1 call. What's my per-item budget and a sensible allocation? Short answer, no code.
12500/400 โ 31 calls/item. Allocation: judge top 10 shortlist candidates (10 calls), keep ~20 calls of headroom for re-judging ties and the hardest items. Reserve ~10% of total budget for the end.
๐ฏTakeaways & what Day 1 might do with this
- Pattern family: LLM as a budgeted component (โ recurs as 2026's John Wilkins oracle).
- Day 1 = at-home + one twist. Whoever mastered the at-home version spends Day 1 adapting, not learning.