feat: add architect command and improve coder class documentation

This commit is contained in:
Paul Gauthier 2024-12-09 15:30:01 -08:00 committed by Paul Gauthier (aider)
parent 4fcbf28f91
commit c5d51d62c4
3 changed files with 9 additions and 0 deletions

View file

@ -3,5 +3,6 @@ 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()