mirror of
https://github.com/Aider-AI/aider.git
synced 2026-02-06 20:26:38 +01:00
10 lines
345 B
Python
10 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()
|