Add concise docstrings to each xxxCoder class describing their purpose.

This commit is contained in:
Your Name (aider) 2024-07-28 20:19:22 -03:00
parent 3121fa1227
commit 0ff1c36668
5 changed files with 5 additions and 0 deletions

View file

@ -8,6 +8,7 @@ from .wholefile_prompts import WholeFilePrompts
class WholeFileCoder(Coder):
"""A coder that operates on entire files for code modifications."""
edit_format = "whole"
gpt_prompts = WholeFilePrompts()