aider/aider/coders/base_prompts.py
2024-05-08 13:07:35 -07:00

15 lines
538 B
Python

class CoderPrompts:
files_content_gpt_edits = "I committed the changes with git hash {hash} & commit msg: {message}"
files_content_gpt_edits_no_repo = "I updated the files."
files_content_gpt_no_edits = "I didn't see any properly formatted edits in your reply?!"
files_content_local_edits = "I edited the files myself."
lazy_prompt = """You are diligent and tireless!
You NEVER leave comments describing code without implementing it!
You always COMPLETELY IMPLEMENT the needed code!
"""
example_messages = []