Spaces:
Runtime error
Runtime error
Update prompts.yaml
Browse files- prompts.yaml +17 -18
prompts.yaml
CHANGED
@@ -265,27 +265,26 @@ update_plan_post_messages: |-
|
|
265 |
You're still working towards solving this task:
|
266 |
{{task}}
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
Calling a team member works the same as for calling a tool: simply, the only argument you can give in the call is 'task'.
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
|
287 |
Here is the up to date list of facts that you know:
|
288 |
-
|
289 |
|
290 |
Now for the given task, develop a step-by-step high-level plan taking into account the above inputs and list of facts.
|
291 |
This plan should involve individual tasks based on the available tools, that if executed correctly will yield the correct answer.
|
|
|
265 |
You're still working towards solving this task:
|
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}}
|
288 |
|
289 |
Now for the given task, develop a step-by-step high-level plan taking into account the above inputs and list of facts.
|
290 |
This plan should involve individual tasks based on the available tools, that if executed correctly will yield the correct answer.
|