mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
Add docstrings to AskCoder and HelpCoder classes
This commit is contained in:
parent
36bba7a3ae
commit
7a96c47a8b
2 changed files with 3 additions and 1 deletions
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue