Skip to content

Commit

Permalink
fix getting project name in get_alternative_solutions.prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonOstrez committed Jul 23, 2024
1 parent c80bdfc commit cea0d2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Then, upon implementing these changes, your colleague came back with the followi
{% endif %}

{% 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 }}
```
Expand Down
3 changes: 2 additions & 1 deletion core/prompts/troubleshooter/iteration.prompt
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
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 }}
{% endfor %}
```
Expand Down

0 comments on commit cea0d2a

Please sign in to comment.