What's the maximum CSV size can PandasAI handle? #346
-
Can it handle large CSV files or no? I'm assuming the contents have to fill in the context size of the LLM model being used? |
Beta Was this translation helpful? Give feedback.
Answered by
mspronesti
Jul 10, 2023
Replies: 1 comment
-
Pandasai does not work with the file content but with the dataframe schema. It generates the code required for the analysis you want to perform and executes it, but it does not inject the dataframe in the prompt. The concern might arise for dataframes with plenty of columns, but not with the size of the file. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gventuri
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pandasai does not work with the file content but with the dataframe schema. It generates the code required for the analysis you want to perform and executes it, but it does not inject the dataframe in the prompt. The concern might arise for dataframes with plenty of columns, but not with the size of the file.