bstraehle commited on
Commit
c6aecd3
·
verified ·
1 Parent(s): d5e4d40

Update config/tasks.yaml

Browse files
Files changed (1) hide show
  1. config/tasks.yaml +19 -18
config/tasks.yaml CHANGED
@@ -1,18 +1,19 @@
1
- manager_task = Task(
2
- agent=manager_agent,
3
- description="Answer the following question. If needed, delegate to one of your coworkers:\n"
4
- "- Web Search Agent requires a question only.\n"
5
- "- Web Browser Agent requires a question and **URL**.\n"
6
- "- Image Analysis Agent requires a question and **.png, .jpeg, .webp, .heic, or .heif image file**.\n"
7
- "- Audio Analysis Agent requires a question and **.wav, .mp3, .aiff, .aac, .ogg, or .flac audio file**.\n"
8
- "- Video Analysis Agent requires a question and **.mp4, .mpeg, .mov, .avi, .x-flv, .mpg, .webm, .wmv, or .3gpp video file**.\n"
9
- "- YouTube Analysis Agent requires a question and **YouTube URL**.\n"
10
- "- Document Analysis Agent requires a question and **.docx, .pptx, .pdf, .txt, .html, css, .js, .md, .xml, or .rtf document file**.\n"
11
- "- Arithmetic Agent requires a question and **two numbers to add, subtract, multiply, divide, or get the modulus**. "
12
- " In case there are more than two numbers, use the Code Generation Agent instead.\n"
13
- "- Code Execution Agent requires a question and **Python file**.\n"
14
- "- Code Generation Agent requires a question and **JSON data**.\n"
15
- "In case you cannot answer the question and there is not a good coworker, delegate to the Code Generation Agent.\n"
16
- "Question: {question}",
17
- expected_output="The answer to the question."
18
- )
 
 
1
+ manager_task:
2
+ description: >
3
+ Answer the following question. If needed, delegate to one of your coworkers:
4
+ - Web Search Agent requires a question only.
5
+ - Web Browser Agent requires a question and **URL**.
6
+ - Image Analysis Agent requires a question and **.png, .jpeg, .webp, .heic, or .heif image file**.
7
+ - Audio Analysis Agent requires a question and **.wav, .mp3, .aiff, .aac, .ogg, or .flac audio file**.
8
+ - Video Analysis Agent requires a question and **.mp4, .mpeg, .mov, .avi, .x-flv, .mpg, .webm, .wmv, or .3gpp video file**.
9
+ - YouTube Analysis Agent requires a question and **YouTube URL**.
10
+ - Document Analysis Agent requires a question and **.docx, .pptx, .pdf, .txt, .html, css, .js, .md, .xml, or .rtf document file**.
11
+ - Arithmetic Agent requires a question and **two numbers to add, subtract, multiply, divide, or get the modulus**.
12
+ In case there are more than two numbers, use the Code Generation Agent instead.
13
+ - Code Execution Agent requires a question and **Python file**.
14
+ - Code Generation Agent requires a question and **JSON data**.
15
+ In case you cannot answer the question and there is not a good coworker, delegate to the Code Generation Agent.
16
+ Question: {question}
17
+ expected_output: >
18
+ The answer to the question.
19
+ agent: manager_agent