mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-10 13:37:55 -05:00
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:
@@ -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:
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user