/ qwencoder-eval / instruct / aider / aider / coders / help_coder.py
help_coder.py
 1  from ..dump import dump  # noqa: F401
 2  from .base_coder import Coder
 3  from .help_prompts import HelpPrompts
 4  
 5  
 6  class HelpCoder(Coder):
 7      """Interactive help and documentation about aider."""
 8      edit_format = "help"
 9      gpt_prompts = HelpPrompts()
10  
11      def get_edits(self, mode="update"):
12          return []
13  
14      def apply_edits(self, edits):
15          pass