Spaces:
Runtime error
Runtime error
Update prompts.yaml
Browse files- prompts.yaml +14 -14
prompts.yaml
CHANGED
@@ -266,22 +266,22 @@ update_plan_post_messages: |-
|
|
266 |
{{task}}
|
267 |
|
268 |
You can leverage these tools:
|
269 |
-
{%- for tool in tools.values() %}
|
270 |
-
- {{ tool.name }}: {{ tool.description }}
|
271 |
-
|
272 |
-
|
273 |
-
{%- endfor %}
|
274 |
-
|
275 |
-
{%- if managed_agents and managed_agents.values() | list %}
|
276 |
-
You can also give tasks to team members.
|
277 |
Calling a team member works the same as for calling a tool: simply, the only argument you can give in the call is 'task'.
|
278 |
-
Given that this team member is a real human, you should be very verbose in your task, it should be a long string providing informations as detailed as necessary.
|
279 |
Here is a list of the team members that you can call:
|
280 |
-
{%- for agent in managed_agents.values() %}
|
281 |
-
- {{ agent.name }}: {{ agent.description }}
|
282 |
-
{%- endfor %}
|
283 |
-
{%- else %}
|
284 |
-
{%- endif %}
|
285 |
|
286 |
Here is the up to date list of facts that you know:
|
287 |
{{facts_update}}
|
|
|
266 |
{{task}}
|
267 |
|
268 |
You can leverage these tools:
|
269 |
+
{%- for tool in tools.values() %}
|
270 |
+
- {{ tool.name }}: {{ tool.description }}
|
271 |
+
Takes inputs: {{tool.inputs}}
|
272 |
+
Returns an output of type: {{tool.output_type}}
|
273 |
+
{%- endfor %}
|
274 |
+
|
275 |
+
{%- if managed_agents and managed_agents.values() | list %}
|
276 |
+
You can also give tasks to team members.
|
277 |
Calling a team member works the same as for calling a tool: simply, the only argument you can give in the call is 'task'.
|
278 |
+
Given that this team member is a real human, you should be very verbose in your task, it should be a long string providing informations as detailed as necessary.
|
279 |
Here is a list of the team members that you can call:
|
280 |
+
{%- for agent in managed_agents.values() %}
|
281 |
+
- {{ agent.name }}: {{ agent.description }}
|
282 |
+
{%- endfor %}
|
283 |
+
{%- else %}
|
284 |
+
{%- endif %}
|
285 |
|
286 |
Here is the up to date list of facts that you know:
|
287 |
{{facts_update}}
|