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

@ -13,6 +13,7 @@ from .editblock_prompts import EditBlockPrompts
class EditBlockCoder(Coder):
"""A coder that uses edit blocks for code modifications."""
edit_format = "diff"
gpt_prompts = EditBlockPrompts()