We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dfd940 commit 152e5d3Copy full SHA for 152e5d3
1 file changed
aider/coders/agent_coder.py
@@ -81,12 +81,9 @@ class AgentCoder(Coder):
81
"""Mode where the LLM autonomously manages which files are in context."""
82
83
edit_format = "agent"
84
+ gpt_prompts = AgentPrompts()
85
86
def __init__(self, *args, **kwargs):
- # Initialize appropriate prompt set before calling parent constructor
87
- # This needs to happen before super().__init__ so the parent class has access to gpt_prompts
88
- self.gpt_prompts = AgentPrompts()
89
-
90
# Dictionary to track recently removed files
91
self.recently_removed = {}
92
0 commit comments