mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
8 lines
306 B
Python
8 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()
|