mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-07 05:05:01 +00:00
Add AskCoder functionality to handle user questions about the codebase
This commit is contained in:
parent
f44347e72d
commit
69af6f8ab5
3 changed files with 9 additions and 11 deletions
12
aider/coders/ask_coder.py
Normal file
12
aider/coders/ask_coder.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue