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/memory.py
9 lines · 265 BpythonDownload
"""Beam Search Memory component — none.

Beam Search keeps no cross-candidate free-form knowledge; the plain loop leaves Memory empty (NullMemory).
"""
from __future__ import annotations

from ...components.memory import NullMemory

BeamSearchMemory = NullMemory