galapagos
DocsHubLeaderboardPlaygroundNews
galapagos

six blocks · any task ·
better solutions emerge.

Platform

  • Hub
  • Leaderboard
  • Playground

Resources

  • Docs
  • API reference
  • Card spec

Community

  • GitHub
  • Contribute

Updates

  • News
  • Releases

© 2026 Galapagos. Licensed under Apache-2.0.

Build your own scaffold.

Hub/Scaffolds/default/Top-K

default/topk

Top-K

Always expand the single best program, with the next K as context. Pure greedy elitism.

Test-time searchApache-2.0
Scaffold cardFiles and versions
topk/config.yaml
12 lines · 719 ByamlDownload
# Top-K — faithful port of SkyDiscover's TopKDatabase defaults (uncapped keep-all archive).
# Sections mirror the six core components.
seed: 0
general:
  max_iterations: 100
  inner_retry_times: 3      # SkyDiscover retries up to 3 propose+evaluate attempts per iteration (retry_times)
# population (TopKPopulation) is uncapped keep-all by default (SkyDiscover enforces no cap);
# set population.capacity to an int only if you need to bound the archive.
selection_policy:           # TopKPolicy
  num_inspirations: 4       # K — programs at ranks 2..K+1 used as context (num_context_programs)
proposer:
  max_tokens: 32000         # SkyDiscover LLMConfig.max_tokens (applies only to a model built from this preset)