Skip to content

Commit

Permalink
Print each task on its own line in filter_files.
Browse files Browse the repository at this point in the history
  • Loading branch information
gperetin committed Jul 5, 2024
1 parent 8638ca1 commit 18e1154
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/prompts/developer/filter_files.prompt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ We've broken the development of the project down to these tasks:
```
{% for task in state.tasks %}
{{ loop.index }}. {{ task.description }}{% if task.get("status") == "done" %} (completed){% endif %}

{% endfor %}
```

Expand All @@ -31,4 +32,4 @@ Focus on solving this issue in the following way:
The files necessary for a developer to understand, modify, implement, and test the current task are considered to be relevant files.
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.

{% include "partials/relative_paths.prompt" %}
{% include "partials/relative_paths.prompt" %}

0 comments on commit 18e1154

Please sign in to comment.