fabro/graph.fabro
Fabro b3cc7d3e7a init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-03-16 01:37:18 -04:00

12 lines
550 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 910ecd1b8df7678f45c3d507dde6bcb1faafa243 && 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
}