fabro/graph.fabro
Fabro 40019fffbf init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-03-16 07:58:10 -04:00

9 lines
547 B
Text

digraph SWEBench {
rankdir=LR
start [shape=Mdiamond]
exit [shape=Msquare]
setup [label="Setup", shape=parallelogram, script="git clone https://github.com/django/django.git . && git checkout ef082ebb84f00e38af4e8880d04e8365c2766d34 && python -m pip install -e ."]
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
}