Add docstrings to AskCoder and HelpCoder classes

This commit is contained in:
Your Name 2024-07-28 20:22:50 -03:00 committed by Your Name (aider)
parent 36bba7a3ae
commit 7a96c47a8b
2 changed files with 3 additions and 1 deletions

View file

@ -3,5 +3,7 @@ from .base_coder import Coder
class AskCoder(Coder):
"""Ask questions about code without making any changes."""
edit_format = "ask"
gpt_prompts = AskPrompts()

View file

@ -4,7 +4,7 @@ from .help_prompts import HelpPrompts
class HelpCoder(Coder):
"""A coder that provides help and documentation."""
"""Interactive help and documentation about aider."""
edit_format = "help"
gpt_prompts = HelpPrompts()