Merge pull request #166 from Pythagora-io/bugfix/quick-implementation-issue

Do not use epic description in feature_list prompt if quick implementation
This commit is contained in:
LeonOstrez
2025-05-28 07:27:56 +01:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{% if state.epics|length > 3 %}
{% if state.epics|length > 3 and state.current_task and state.current_task.quick_implementation is not defined %}
Here is the list of features that were previously implemented on top of initial high level description of "{{ state.branch.project.name }}":
```
@@ -7,7 +7,7 @@ Here is the list of features that were previously implemented on top of initial
{% endfor %}
```
{% endif %}
{% if state.epics|length > 2 %}
{% if state.epics|length > 2 and state.current_task and state.current_task.quick_implementation is not defined %}
Here is the feature that you are implementing right now:
```