Please let me know what best practices should be here when using this conditionally logic where, if the condition fails, I don’t want anything to be run.
I just had a similar problem which I solved by first running a standalone AIP logic that would modify a Boolean property on each object, signifying whether that object should be run through the second LLM step or not.
Then I used a TS function to search for all my objects that had that property set to True and fed that object set into a second AIP logic function that would do the parsing/struct step.
Thanks for the reply - turns out I had some other misconfigurations in my Use LLM blocks which prevented my from selecting “Take no action” (which I’d prefer to returning an empty struct), but Creating a struct column also appears to solve this issue.