mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-09 06:05:00 +00:00
11 lines
357 B
Python
11 lines
357 B
Python
from ..dump import dump # noqa: F401
|
|
from .editblock_coder import EditBlockCoder
|
|
from .editblock_fenced_prompts import EditBlockFencedPrompts
|
|
|
|
|
|
class EditBlockFencedCoder(EditBlockCoder):
|
|
edit_format = "diff-fenced"
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.gpt_prompts = EditBlockFencedPrompts()
|