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
Hey @mchwasta! I'm a bot designed to help you with bugs, questions, and contributions. I'm here to assist you while you wait for a human maintainer.
The error "'UnstructuredParser' object is not iterable" occurs because the UnstructuredParser is not designed to be used as an iterable object. This means you cannot use it in a context that requires iteration, such as in a loop or a comprehension. To resolve this, ensure that you are not trying to iterate over the UnstructuredParser object itself. Instead, use its methods, like convert, to process documents individually [1].
If you're encountering a similar issue with the OpenAI parser, it might be due to a similar misuse. Make sure to check how you're using these parsers and ensure you're not attempting to iterate over them directly.
I keep getting this error: 'UnstructuredParser' object is not iterable
I get a similar error using the openai parser
Tried running it in a clean env and still not working
Thanks!
The text was updated successfully, but these errors were encountered: