mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
8 lines
301 B
Python
8 lines
301 B
Python
from .editor_whole_prompts import EditorWholeFilePrompts
|
|
from .wholefile_coder import WholeFileCoder
|
|
|
|
|
|
class EditorWholeFileCoder(WholeFileCoder):
|
|
"A coder that operates on entire files, focused purely on editing files."
|
|
edit_format = "editor-whole"
|
|
gpt_prompts = EditorWholeFilePrompts()
|