Kickoff_for_each - Can I have same crew execute tasks sequentially for each input

Hello All,

I have a batch of texts, I need to send it to the agent. example
batch_of_text=[text1,text2,text3…] Here these texts are huge documents…

inputs={
“content” : text }

What i have read is kickoff_for_each(inputs=inputs) is used in this case, but it creates a new crew for each iteration which I don’t want ( as it takes a long time) and I don’t want async calls as llm token limits will be hit. How can I send the “inputs” to the agent one by one while keeping the same crew.

  1. for multiple crew/agents in the above case, how can I store task output to different output files ?

any example will be helpful here.. thanks in advance.