mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
9 lines
345 B
Python
9 lines
345 B
Python
from ..dump import dump # noqa: F401
|
|
from .editblock_coder import EditBlockCoder
|
|
from .editblock_fenced_prompts import EditBlockFencedPrompts
|
|
|
|
|
|
class EditBlockFencedCoder(EditBlockCoder):
|
|
"""A coder that uses fenced search/replace blocks for code modifications."""
|
|
edit_format = "diff-fenced"
|
|
gpt_prompts = EditBlockFencedPrompts()
|