You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very simple workflow - allowing delegaton causing the flow to crush for some reason.
Using tool: Ask question to coworker
Tool Input:
"{"name": "Review content outline", "description": "Can you please assess the optimized content outline for the article on baloon blowing? Ensure that the following questions are fully addressed: Additionally, verify that the content is engaging, human-like, and logically organized without any irrelevant sections or headings. Suggest any improvements for readability or engagement.", "args_schema": "type[BaseModel]", "return_direct": false, "verbose": true}"
Tool Output:
Error: the Action Input is not a valid key, value dictionary.
My code (as I was saying, super basic):
content_writer = Agent(
role="Senior Content Writer",
goal="Write and optimize high-quality content that improves search engine rankings and enhances user engagement",
backstory=(
"xxx"
),
allow_delegation=False,
verbose=True
)
content_reviewer = Agent(
role="Content Reviewer",
goal="xx",
backstory=(
"xxx."
),
allow_delegation=True,
verbose=True
)
outline_content_task = Task(
description=(
"Create an SEO-optimized content outline based on the provided list of questions: {list_of_questions}. "
"The task requires generating a unique topic and H1 heading, as well as a structured outline with H2 and H3 headings "
"to address all the provided questions in a logical flow. Ensure that the content is SEO-friendly, uses sentence case, and incorporates relevant keywords naturally."
),
expected_output=(
"- **Topic**: A specific, engaging, and keyword-rich topic in sentence case\n"
"- **H1**: A clear and focused H1 heading in sentence case\n"
"- **Outline**: A structured outline including H2 and H3 headings, with all questions addressed under the appropriate sections\n"
"- **Meta description**: A compelling meta description summarizing the article, in sentence case and optimized for search engines"
),
tools=[],
agent=seo_content_writer,
)
review_content_task = Task(
description=(
xxx
),
expected_output=(
xxx
),
tools=[],
agent=content_reviewer,
)
crew = Crew(
agents=[seo_content_writer, content_reviewer],
tasks=[outline_content_task, review_content_task],
verbose=True,
memory=True
)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Very simple workflow - allowing delegaton causing the flow to crush for some reason.
Using tool: Ask question to coworker
Tool Input:
"{"name": "Review content outline", "description": "Can you please assess the optimized content outline for the article on baloon blowing? Ensure that the following questions are fully addressed: Additionally, verify that the content is engaging, human-like, and logically organized without any irrelevant sections or headings. Suggest any improvements for readability or engagement.", "args_schema": "type[BaseModel]", "return_direct": false, "verbose": true}"
Tool Output:
Error: the Action Input is not a valid key, value dictionary.
My code (as I was saying, super basic):
Beta Was this translation helpful? Give feedback.
All reactions