Skip to content

Commit 4bcf374

Browse files
authored
Merge pull request #1048 from Pythagora-io/formatting-relevant-files
Print each task on its own line in filter_files.
2 parents 8638ca1 + 18e1154 commit 4bcf374

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/prompts/developer/filter_files.prompt

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ We've broken the development of the project down to these tasks:
88
```
99
{% for task in state.tasks %}
1010
{{ loop.index }}. {{ task.description }}{% if task.get("status") == "done" %} (completed){% endif %}
11+
1112
{% endfor %}
1213
```
1314

@@ -31,4 +32,4 @@ Focus on solving this issue in the following way:
3132
The files necessary for a developer to understand, modify, implement, and test the current task are considered to be relevant files.
3233
Your job is select which of existing files are relevant for the current task. From the above list of files that app currently contains, you have to select ALL files that are relevant to the current task. Think step by step of everything that has to be done in this task and which files contain needed information. If you are unsure if a file is relevant or not, it is always better to include it in the list of relevant files.
3334

34-
{% include "partials/relative_paths.prompt" %}
35+
{% include "partials/relative_paths.prompt" %}

0 commit comments

Comments
 (0)