mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Python scripts for running SWE-bench Lite evals against Fabro agent in Daytona sandboxes: instance orchestration, Dockerfile generation, and result evaluation via the official swebench harness. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
428 B
Text
12 lines
428 B
Text
digraph SWEBench {
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond]
|
|
exit [shape=Msquare]
|
|
|
|
setup [label="Setup", shape=parallelogram, script="$setup_script"]
|
|
solve [label="Solve", prompt="Fix this GitHub issue in the repository. Make the minimal code change needed."]
|
|
extract_patch [label="Extract Patch", shape=parallelogram, script="git diff"]
|
|
|
|
start -> setup -> solve -> extract_patch -> exit
|
|
}
|