mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
9 lines
547 B
Text
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 879cc3da6249e920b8d54518a0ae06de835d7373 && 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
|
|
}
|