Reputation: 21
I am tasked to build a production level RAG application over CSV files. Possible Approches:
First approach is giving vague answer for using unstructured approach to structured data and second is doing very good but I suspect its scalability. I need suggesstion.
Upvotes: 0
Views: 1608
Reputation: 11
Depends on how many and large your files are in production. Can you describe your use case a bit more?
One issue you are going to run into with even approach #2 is how do you know which csv file to load in dataframe?
One approach, though not used in production environment, that worked well for me was
Obviously this approach might get expensive if you have tons csv files.
There are a few other methods like Chain of tables and Mix-Self-Consistency approach that I have read but not implemented
Upvotes: 1