mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
15 lines
354 B
Python
15 lines
354 B
Python
from ..dump import dump # noqa: F401
|
|
from .base_coder import Coder
|
|
from .help_prompts import HelpPrompts
|
|
|
|
|
|
class HelpCoder(Coder):
|
|
"""Interactive help and documentation about aider."""
|
|
edit_format = "help"
|
|
gpt_prompts = HelpPrompts()
|
|
|
|
def get_edits(self, mode="update"):
|
|
return []
|
|
|
|
def apply_edits(self, edits):
|
|
pass
|