mirror of
https://github.com/Aider-AI/aider.git
synced 2026-02-06 20:26:38 +01:00
9 lines
306 B
Python
9 lines
306 B
Python
from .editblock_coder import EditBlockCoder
|
|
from .editor_editblock_prompts import EditorEditBlockPrompts
|
|
|
|
|
|
class EditorEditBlockCoder(EditBlockCoder):
|
|
"A coder that uses search/replace blocks, focused purely on editing files."
|
|
edit_format = "editor-diff"
|
|
gpt_prompts = EditorEditBlockPrompts()
|