mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-09 21:27:53 -05:00
fix getting project name in get_alternative_solutions.prompt
This commit is contained in:
@@ -44,7 +44,7 @@ Then, upon implementing these changes, your colleague came back with the followi
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if user_input != '' %}
|
{% if user_input != '' %}
|
||||||
Your colleague who is testing the app "{{ name }}" sent you this report now:
|
Your colleague who is testing the app "{{ state.branch.project.name }}" sent you this report now:
|
||||||
```
|
```
|
||||||
{{ user_input }}
|
{{ user_input }}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ You are working on an app called "{{ state.branch.project.name }}" and you need
|
|||||||
|
|
||||||
{% if state.tasks and state.current_task %}
|
{% if state.tasks and state.current_task %}
|
||||||
Development process of this app was split into smaller tasks. Here is the list of all tasks:
|
Development process of this app was split into smaller tasks. Here is the list of all tasks:
|
||||||
```{% for task in state.tasks %}
|
```
|
||||||
|
{% for task in state.tasks %}
|
||||||
{{ loop.index }}. {{ task.description }}
|
{{ loop.index }}. {{ task.description }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user