mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
introduction.md
This commit is contained in:
parent
c2009fd113
commit
5942057a9c
1 changed files with 5 additions and 0 deletions
|
@ -433,10 +433,15 @@ def run_test(
|
|||
instructions = intro.read_text() + "\n\n"
|
||||
else:
|
||||
instructions = ""
|
||||
|
||||
introduction = testdir / ".docs/introduction.md"
|
||||
if introduction.exists():
|
||||
instructions += introduction.read_text()
|
||||
instructions += (testdir / ".docs/instructions.md").read_text()
|
||||
instructions_append = testdir / ".docs/instructions.append.md"
|
||||
if instructions_append.exists():
|
||||
instructions += instructions_append.read_text()
|
||||
|
||||
instructions += prompts.instructions_addendum.format(file_list=file_list)
|
||||
|
||||
io = InputOutput(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue