I have multiple bank accounts in a few different countries. I want to be able to ask questions about it.
HOW I CURRENTLY DO IT:
- I download all of my bank account statements (PDFs, CSVs, images...) and my family's (~20 statements, some are as long as 70 pages, some are 2 pages).
- I upload them to ChatGPT.
- I ask questions about them.
THE APP I WANT TO BUILD:
- I upload all of my bank account statements to the app .
- The answers to a set of pre-defined question are retrieved automatically.
HOW DO I ACHIEVE THIS?
I'm new to using the OpenAI api. I don't know how to achieve this. Some questions:
- Can I submit PDFs, CSVs and images all through the same api call?
- Which model can do this?
- For the specific case of PDFs: is it better to
....a) convert to image and have openai answer questions about images? or
....b) extract text from the PDF and have openai find answers to questions on text? - Are there going to be problems with very long PDFs? What are some techniques to avoid such problems?