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
In Flowise we can use E2B code interpreter. For example, we can attach csv file to prompt and ask to draw chart depending on data from attached file.
I noticed that in this case content of transferred file is passed via string in code, like
import StringIO data_csv = ''' <file content goes there ...
But if the content of the file is higher than some limit, the code truncates with message "(loading truncated data, length: 194466)".
In Flowise we can use E2B code interpreter. For example, we can attach csv file to prompt and ask to draw chart depending on data from attached file.
I noticed that in this case content of transferred file is passed via string in code, like
import StringIO data_csv = ''' <file content goes there ...
But if the content of the file is higher than some limit, the code truncates with message "(loading truncated data, length: 194466)".
Is there any possibility to increase such limit or any ideas how to pass data to E2B code interpreter by file upload method?(https://e2b.dev/docs/quickstart/upload-download-files)