mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-07 05:05:01 +00:00
feat: Add ContextCoder for identifying relevant files in requests
This commit is contained in:
parent
a5c8c534c1
commit
74254cdbd5
5 changed files with 63 additions and 20 deletions
9
aider/coders/context_coder.py
Normal file
9
aider/coders/context_coder.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from .base_coder import Coder
|
||||
from .context_prompts import ContextPrompts
|
||||
|
||||
|
||||
class ContextCoder(Coder):
|
||||
"""Identify which files need to be edited for a given request."""
|
||||
|
||||
edit_format = "context"
|
||||
gpt_prompts = ContextPrompts()
|
Loading…
Add table
Add a link
Reference in a new issue