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/Best-of-N

default/best_of_n

Best-of-N

Give the LLM N valid attempts at the same parent before committing to the global best, then repeat.

Test-time searchApache-2.0
Scaffold cardFiles and versions
best_of_n/prompt_builder.py
9 lines · 456 BpythonDownload
"""Best-of-N PromptBuilder component — the standard multi-section template (SkyDiscover default builder)."""
from __future__ import annotations

from ...components.prompt import DefaultPromptBuilder


class BestOfNPromptBuilder(DefaultPromptBuilder):
    """SkyDiscover's default context builder: task -> metrics -> feedback -> inspirations -> current
    program. Best-of-N adds nothing of its own, so it renders the canonical multi-section message."""