mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 20:54:59 +00:00
3.5 prompts
This commit is contained in:
parent
2bdfdb11bb
commit
56d2aa59ee
3 changed files with 8 additions and 3 deletions
|
@ -298,7 +298,10 @@ class Coder:
|
|||
dict(role="user", content=inp),
|
||||
]
|
||||
|
||||
main_sys = self.gpt_prompts.main_system + "\n" + self.gpt_prompts.system_reminder
|
||||
main_sys = self.gpt_prompts.main_system
|
||||
if self.main_model == "gpt-4":
|
||||
main_sys += "\n" + self.gpt_prompts.system_reminder
|
||||
|
||||
messages = [
|
||||
dict(role="system", content=main_sys),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue