Add AskCoder functionality to handle user questions about the codebase

This commit is contained in:
Your Name 2024-07-28 19:02:27 -03:00 committed by Your Name (aider)
parent f44347e72d
commit 69af6f8ab5
3 changed files with 9 additions and 11 deletions

12
aider/coders/ask_coder.py Normal file
View file

@ -0,0 +1,12 @@
from pathlib import Path
from aider import diffs
from ..dump import dump # noqa: F401
from .base_coder import Coder
from .ask_prompts import AskPrompts
class AskCoder(Coder):
edit_format = "ask"
gpt_prompts = AskPrompts()