Spaces:
Runtime error
Runtime error
Prudvireddy
commited on
Commit
•
23c41d1
1
Parent(s):
da62a10
Update agents.py
Browse files
agents.py
CHANGED
@@ -125,7 +125,7 @@ def get_agents_and_tasks(groq_api_key):
|
|
125 |
# )
|
126 |
img_generation_task = Task(
|
127 |
description='Given the script, use the given tool to generate images using {model}',
|
128 |
-
expected_output="""path of images folder""",
|
129 |
tools = [image_generator],
|
130 |
context = [img_text_task],
|
131 |
# async_execution=True,
|
@@ -134,7 +134,7 @@ def get_agents_and_tasks(groq_api_key):
|
|
134 |
|
135 |
speech_generation_task = Task(
|
136 |
description='Given the script, use the given tool to generate speech',
|
137 |
-
expected_output="""path of speeches folder""",
|
138 |
tools = [speech_generator],
|
139 |
context = [img_text_task],
|
140 |
# async_execution=True,
|
|
|
125 |
# )
|
126 |
img_generation_task = Task(
|
127 |
description='Given the script, use the given tool to generate images using {model}',
|
128 |
+
expected_output="""Acknowledgement of images generation and path of images folder""",
|
129 |
tools = [image_generator],
|
130 |
context = [img_text_task],
|
131 |
# async_execution=True,
|
|
|
134 |
|
135 |
speech_generation_task = Task(
|
136 |
description='Given the script, use the given tool to generate speech',
|
137 |
+
expected_output="""Acknowledgement of speeches generation and path of speeches folder""",
|
138 |
tools = [speech_generator],
|
139 |
context = [img_text_task],
|
140 |
# async_execution=True,
|