Passing inputs to multiple agents

Hi Folks,

is it possible to have one input sent to multiple agents.
I have a result = SnipDCrew.kickoff(inputs={“snip”:“Roses are red”})
where snip is any piece of text.

I have 2 agents

  1. Agent A does a fact check
  2. Agent B adds more information

The crew is
SnipDCrew = Crew(
agents=[AgentA,AgentB],
tasks=[TaskA,TaskB],
process=Process.sequential,
verbose=False,
)

In the agent and task description, I have specified Agent B and Task B to accept the {snip}.

What I see happening is the input {snip} gets sent to Agent A and the output of Agent A gets sent to Agent B. What I wanted was the {snip} gets sent to Agent B

Any ideas on what I should be doing?

Regards