I got the error message “
There was a problem with the LLM: 400 Total file size exceeds the limit of 32MB” while trying to run a step in our Thunk (see URL). FYI, we reran the step and it succeeded.
Thanks @Rachel I’m looking into this and will get back to you.
1 Like
Hi @Rachel thanks for reporting.
The root of the issue is the agent was opening these two PDF files, both of which are pretty large:
https://www.inter-bee.com/assets/dl/pdf/en/BEE19_Review_e.pdf
https://www.inter-bee.com/assets/dl/pdf/en/BEE18_Review_e.pdf
This hit the limit of our LLM provider (OpenAI) and that made the step fail.
I’ve made a change to the system so it doesn’t fail in such an extreme way. Now when it opens a file that’s too large, the LLM will be “aware” of it and can react accordingly (including giving you a better error message).
This should be released tomorrow.
Thanks @tony!_____