aider/aider/coders/help_coder.py

16 lines
355 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