dagiro commited on
Commit
cd57dad
·
1 Parent(s): 8c5c24b

Refactor prompts.yaml to remove quotes from keys for YAML compliance

Browse files
__pycache__/Gradio_UI.cpython-310.pyc ADDED
Binary file (6.85 kB). View file
 
prompts.yaml CHANGED
@@ -1,4 +1,4 @@
1
- "system_prompt": |-
2
  You are an expert assistant who can solve any task using code blobs. You will be given a task to solve as best you can.
3
  To do so, you have been given access to a list of tools: these tools are basically Python functions which you can call with code.
4
  To solve the task, you must plan forward to proceed in a series of steps, in a cycle of 'Thought:', 'Code:', and 'Observation:' sequences.
@@ -172,8 +172,8 @@
172
  10. Don't give up! You're in charge of solving the task, not providing directions to solve it.
173
 
174
  Now Begin! If you solve the task correctly, you will receive a reward of $1,000,000.
175
- "planning":
176
- "initial_facts": |-
177
  Below I will present you a task.
178
 
179
  You will now build a comprehensive preparatory survey of which facts we have at our disposal and which ones we still need.
@@ -196,7 +196,7 @@
196
  ### 2. Facts to look up
197
  ### 3. Facts to derive
198
  Do not add anything else.
199
- "initial_plan": |-
200
  You are a world expert at making efficient plans to solve any task using a set of carefully crafted tools.
201
 
202
  Now for the given task, develop a step-by-step high-level plan taking into account the above inputs and list of facts.
@@ -234,7 +234,7 @@
234
  ```
235
 
236
  Now begin! Write your plan below.
237
- "update_facts_pre_messages": |-
238
  You are a world expert at gathering known and unknown facts based on a conversation.
239
  Below you will find a task, and a history of attempts made to solve the task. You will have to produce a list of these:
240
  ### 1. Facts given in the task
@@ -242,7 +242,7 @@
242
  ### 3. Facts still to look up
243
  ### 4. Facts still to derive
244
  Find the task and history below:
245
- "update_facts_post_messages": |-
246
  Earlier we've built a list of facts.
247
  But since in your previous steps you may have learned useful new facts or invalidated some false ones.
248
  Please update your list of facts based on the previous history, and provide these headings:
@@ -252,7 +252,7 @@
252
  ### 4. Facts still to derive
253
 
254
  Now write your new list of facts below.
255
- "update_plan_pre_messages": |-
256
  You are a world expert at making efficient plans to solve any task using a set of carefully crafted tools.
257
 
258
  You have been given a task:
@@ -263,7 +263,7 @@
263
  Find below the record of what has been tried so far to solve it. Then you will be asked to make an updated plan to solve the task.
264
  If the previous tries so far have met some success, you can make an updated plan based on these actions.
265
  If you are stalled, you can make a completely new plan starting from scratch.
266
- "update_plan_post_messages": |-
267
  You're still working towards solving this task:
268
  ```
269
  {{task}}
@@ -299,8 +299,8 @@
299
  After writing the final step of the plan, write the '\n<end_plan>' tag and stop there.
300
 
301
  Now write your new plan below.
302
- "managed_agent":
303
- "task": |-
304
  You're a helpful agent named '{{name}}'.
305
  You have been submitted this task by your manager.
306
  ---
@@ -316,6 +316,6 @@
316
 
317
  Put all these in your final_answer tool, everything that you do not pass as an argument to final_answer will be lost.
318
  And even if your task resolution is not successful, please return as much context as possible, so that your manager can act upon this feedback.
319
- "report": |-
320
  Here is the final answer from your managed agent '{{name}}':
321
- {{final_answer}}
 
1
+ system_prompt: |-
2
  You are an expert assistant who can solve any task using code blobs. You will be given a task to solve as best you can.
3
  To do so, you have been given access to a list of tools: these tools are basically Python functions which you can call with code.
4
  To solve the task, you must plan forward to proceed in a series of steps, in a cycle of 'Thought:', 'Code:', and 'Observation:' sequences.
 
172
  10. Don't give up! You're in charge of solving the task, not providing directions to solve it.
173
 
174
  Now Begin! If you solve the task correctly, you will receive a reward of $1,000,000.
175
+ planning:
176
+ initial_facts: |-
177
  Below I will present you a task.
178
 
179
  You will now build a comprehensive preparatory survey of which facts we have at our disposal and which ones we still need.
 
196
  ### 2. Facts to look up
197
  ### 3. Facts to derive
198
  Do not add anything else.
199
+ initial_plan: |-
200
  You are a world expert at making efficient plans to solve any task using a set of carefully crafted tools.
201
 
202
  Now for the given task, develop a step-by-step high-level plan taking into account the above inputs and list of facts.
 
234
  ```
235
 
236
  Now begin! Write your plan below.
237
+ update_facts_pre_messages: |-
238
  You are a world expert at gathering known and unknown facts based on a conversation.
239
  Below you will find a task, and a history of attempts made to solve the task. You will have to produce a list of these:
240
  ### 1. Facts given in the task
 
242
  ### 3. Facts still to look up
243
  ### 4. Facts still to derive
244
  Find the task and history below:
245
+ update_facts_post_messages: |-
246
  Earlier we've built a list of facts.
247
  But since in your previous steps you may have learned useful new facts or invalidated some false ones.
248
  Please update your list of facts based on the previous history, and provide these headings:
 
252
  ### 4. Facts still to derive
253
 
254
  Now write your new list of facts below.
255
+ update_plan_pre_messages: |-
256
  You are a world expert at making efficient plans to solve any task using a set of carefully crafted tools.
257
 
258
  You have been given a task:
 
263
  Find below the record of what has been tried so far to solve it. Then you will be asked to make an updated plan to solve the task.
264
  If the previous tries so far have met some success, you can make an updated plan based on these actions.
265
  If you are stalled, you can make a completely new plan starting from scratch.
266
+ update_plan_post_messages: |-
267
  You're still working towards solving this task:
268
  ```
269
  {{task}}
 
299
  After writing the final step of the plan, write the '\n<end_plan>' tag and stop there.
300
 
301
  Now write your new plan below.
302
+ managed_agent:
303
+ task: |-
304
  You're a helpful agent named '{{name}}'.
305
  You have been submitted this task by your manager.
306
  ---
 
316
 
317
  Put all these in your final_answer tool, everything that you do not pass as an argument to final_answer will be lost.
318
  And even if your task resolution is not successful, please return as much context as possible, so that your manager can act upon this feedback.
319
+ report: |-
320
  Here is the final answer from your managed agent '{{name}}':
321
+ {{final_answer}}
tools/__pycache__/final_answer.cpython-310.pyc ADDED
Binary file (943 Bytes). View file