Trying to create a very basic process:
- LLM generates multiple text paragraphs, outputs a JSON with each paragraph as a separate element:
{
“document”: [ “parag1”, “parag2”, “parag3” … etc etc ]
}
- I then want to process each pargraph separately and iteratively.
- However, when setting a batch of ‘1’ in the Loop Over Items settings, the lop runs and processes the first item in the JSON successfully, then goes straight to the DONE branch without processing the other items.
what am I doing wrong? thanks a lot