File size: 11,595 Bytes
517cbd2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | """Command-line interface for SkyDiscover."""
import argparse
import asyncio
import logging
import multiprocessing
import os
import sys
import traceback
from typing import Optional
from skydiscover import Runner
from skydiscover.benchmarks.resolution import resolve_benchmark_problem
from skydiscover.config import _parse_model_spec, apply_overrides, load_config
try:
multiprocessing.set_start_method("spawn")
except RuntimeError:
pass
logger = logging.getLogger(__name__)
_SEARCH_CHOICES = [
"evox",
"adaevolve",
"best_of_n",
"beam_search",
"topk",
"openevolve_native",
"openevolve",
"shinkaevolve",
"gepa",
"gepa_native",
"claude_code",
]
def parse_args() -> argparse.Namespace:
"""Build and parse the CLI argument parser."""
parser = argparse.ArgumentParser(
description="SkyDiscover - AI-Driven Scientific and Algorithmic Discovery",
)
parser.add_argument(
"initial_program",
nargs="?",
default=None,
help="Path to the initial program file (can be optional)",
)
parser.add_argument(
"evaluation_file",
help=(
"Evaluator: path to a Python file (must define evaluate()) "
"or a benchmark directory containing Dockerfile + evaluate.sh"
),
)
parser.add_argument("--config", "-c", help="Path to configuration file (YAML)", default=None)
parser.add_argument("--output", "-o", help="Output directory for results", default=None)
parser.add_argument(
"--iterations", "-i", type=int, default=None, help="Maximum number of iterations"
)
parser.add_argument(
"--log-level",
"-l",
choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
default=None,
help="Logging level",
)
parser.add_argument(
"--checkpoint",
default=None,
help="Path to a checkpoint directory to resume from",
)
parser.add_argument("--api-base", default=None, help="Base URL for the LLM API")
parser.add_argument(
"--agentic",
action="store_true",
default=False,
help="Enable agentic mode (codebase root derived from initial program location)",
)
parser.add_argument(
"--model",
"-m",
default=None,
help="LLM model(s) for solution generation, comma-separated (e.g. 'gpt-5', 'gpt-5,gemini/gemini-3-pro')",
)
parser.add_argument(
"--search",
"-s",
choices=_SEARCH_CHOICES,
default=None,
help="Search algorithm to use",
)
return parser.parse_args()
def main() -> int:
"""Synchronous entry point for the skydiscover console script."""
return asyncio.run(main_async())
async def main_async() -> int:
"""Async entry point for the CLI. Returns exit code."""
args = parse_args()
_configure_logging(args.log_level)
if args.initial_program and not os.path.exists(args.initial_program):
print(f"Error: Initial program file '{args.initial_program}' not found", file=sys.stderr)
return 1
if not os.path.exists(args.evaluation_file):
print(f"Error: Evaluation file '{args.evaluation_file}' not found", file=sys.stderr)
return 1
has_overrides = any((args.api_base, args.model, args.agentic, args.search))
config = None
evaluator_env_vars: Optional[dict[str, str]] = None
# Load the configuration
if args.config or has_overrides:
config = load_config(args.config)
evaluator_env_vars = None
try:
apply_overrides(
config,
model=args.model,
api_base=args.api_base,
agentic=args.agentic,
search=args.search,
)
except ValueError as exc:
print(f"Error: {exc}", file=sys.stderr)
return 1
# Resolve benchmark problem if configured and no initial_program provided
if args.initial_program is None and config.benchmark and config.benchmark.enabled:
try:
resolution = resolve_benchmark_problem(config.benchmark)
args.initial_program = resolution.initial_program_path
args.evaluation_file = resolution.evaluator_path
evaluator_env_vars = resolution.evaluator_env_vars
print(
f"[Benchmark Loader] Benchmark: {config.benchmark.name}, Initial program: {args.initial_program}, Evaluator: {args.evaluation_file}"
)
except Exception as exc:
print(f"Error: Failed to load benchmark problem: {exc}", file=sys.stderr)
traceback.print_exc()
return 1
if args.model:
print("Active models:")
for i, m in enumerate(config.llm.models):
provider, *_ = _parse_model_spec(m.name)
print(f" {i + 1}. {m.name} (provider: {provider}, weight: {m.weight})")
if args.api_base:
print(f"Using API base: {config.llm.api_base}")
if args.agentic:
if not config.agentic.codebase_root and args.initial_program:
config.agentic.codebase_root = os.path.dirname(
os.path.abspath(args.initial_program)
)
print(f"Agentic mode enabled (codebase: {config.agentic.codebase_root})")
if args.search:
print(f"Using search algorithm: {args.search}")
# Run the discovery
try:
search_type = config.search.type if config and hasattr(config, "search") else None
if search_type:
from skydiscover.extras.external import (
KNOWN_EXTERNAL,
get_package_name,
get_runner,
is_external,
)
# External backends (openevolve, shinkaevolve, gepa)
if is_external(search_type):
if evaluator_env_vars:
env_var_names = ", ".join(sorted(evaluator_env_vars))
print(
"Error: Passing evaluator environment variables to external backends "
"is not yet supported. "
f"External backend '{search_type}' cannot be used with evaluator env vars: "
f"{env_var_names}",
file=sys.stderr,
)
return 1
from skydiscover.config import build_output_dir
output_dir = args.output or build_output_dir(
search_type, args.initial_program or "scratch"
)
os.makedirs(output_dir, exist_ok=True)
from skydiscover.extras.monitor import start_monitor, stop_monitor
# Start monitor for external backends as well
monitor_server, monitor_callback, feedback_reader = start_monitor(
config, output_dir
)
try:
result = await get_runner(search_type)(
program_path=args.initial_program,
evaluator_path=args.evaluation_file,
config_obj=config,
iterations=args.iterations or config.max_iterations,
output_dir=output_dir,
monitor_callback=monitor_callback,
feedback_reader=feedback_reader,
)
except ModuleNotFoundError as exc:
pkg = get_package_name(search_type)
print(f"Error: {exc}", file=sys.stderr)
print(f"\nThe '{search_type}' backend requires its package.", file=sys.stderr)
print(f"Install with: pip install {pkg}", file=sys.stderr)
return 1
finally:
stop_monitor(monitor_server)
print(f"\nDiscovery complete! Best score: {result.best_score:.4f}")
return 0
if search_type in KNOWN_EXTERNAL:
pkg = get_package_name(search_type)
print(
f"Error: Search type '{search_type}' requires the '{pkg}' package. "
f"Install with: pip install {pkg}",
file=sys.stderr,
)
return 1
# Initialize the runner
runner = Runner(
initial_program_path=args.initial_program,
evaluation_file=args.evaluation_file,
config=config,
config_path=args.config if config is None else None,
output_dir=args.output,
evaluator_env_vars=evaluator_env_vars,
)
# Load the checkpoint if provided
if args.checkpoint:
if not os.path.exists(args.checkpoint):
print(f"Error: Checkpoint directory '{args.checkpoint}' not found", file=sys.stderr)
return 1
print(f"Will resume from checkpoint: {args.checkpoint}")
# Run the discovery
best_program = await runner.run(
iterations=args.iterations,
checkpoint_path=args.checkpoint,
)
checkpoint_dir = os.path.join(runner.output_dir, "checkpoints")
latest_checkpoint = _find_latest_checkpoint(checkpoint_dir)
print("\nDiscovery complete!")
if best_program is None:
print("No valid programs were found.")
else:
print("Best program metrics:")
for name, value in best_program.metrics.items():
formatted = f"{value:.4f}" if isinstance(value, (int, float)) else str(value)
print(f" {name}: {formatted}")
if latest_checkpoint:
print(f"\nLatest checkpoint: {latest_checkpoint}")
print(f"To resume: --checkpoint {latest_checkpoint}")
return 0
except Exception as exc:
print(f"Error: {exc}", file=sys.stderr)
traceback.print_exc()
return 1
def _configure_logging(level_name: Optional[str]) -> None:
"""Set up the root logger with the SkyDiscover console format."""
from skydiscover.search.utils.logging_utils import _ConsoleFilter, _ConsoleFormatter
log_level = getattr(logging, level_name) if level_name else logging.WARNING
root = logging.getLogger()
root.setLevel(log_level)
if not root.handlers:
handler = logging.StreamHandler()
handler.setFormatter(_ConsoleFormatter())
handler.addFilter(_ConsoleFilter())
root.addHandler(handler)
logging.getLogger("skydiscover").setLevel(logging.INFO)
def _find_latest_checkpoint(checkpoint_dir: str) -> Optional[str]:
"""Return the path of the latest checkpoint directory named like ``checkpoint_<n>``."""
if not os.path.isdir(checkpoint_dir):
return None
def parse_iteration(path: str) -> Optional[int]:
try:
return int(path.rsplit("_", 1)[-1])
except (ValueError, IndexError):
return None
candidates = []
for name in os.listdir(checkpoint_dir):
full_path = os.path.join(checkpoint_dir, name)
if not os.path.isdir(full_path):
continue
iteration = parse_iteration(name)
if iteration is None:
continue
candidates.append((iteration, full_path))
if not candidates:
return None
return max(candidates, key=lambda item: item[0])[1]
if __name__ == "__main__":
sys.exit(main())
|