feat: Add ContextCoder for identifying relevant files in requests

This commit is contained in:
Paul Gauthier 2025-03-22 13:36:58 -07:00 committed by Paul Gauthier (aider)
parent a5c8c534c1
commit 74254cdbd5
5 changed files with 63 additions and 20 deletions

View 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()