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/Beam Search

default/beam_search

Maintain a fixed-width beam of promising programs; expand one per step, prune by fitness+diversity.

Test-time searchApache-2.0
Scaffold cardFiles and versions
beam_search/card.yaml
16 lines · 614 ByamlDownload
name: beam_search
display_name: Beam Search
organization: "default"
type: test_time_search
summary: "Maintain a fixed-width beam of promising programs; expand one per step, prune by fitness+diversity."
source: "SkyDiscover (UC Berkeley Sky Computing Lab) — beam_search search strategy"
tags: [baseline, beam, diversity, prune, skydiscover]
license: Apache-2.0
controller: galapagos.scaffolds.beam_search.scaffold.BeamSearchScaffold
components:
  population: {kind: beam}
  selection_policy: {kind: beam}
  prompt_builder: {kind: default}
  proposer: {kind: diff}
  evaluator: {kind: task}
  memory: {kind: none}