Is it possible to use GPT-4 api and have it answer queries based exclusviely on links to PDFs or just train it on the information in those PDFs?
Sure.
@micheal.killarney I would suggest looking into the Assistants API
Yes, I do this on my site.
You can use this plugin ChatGPT Toolkit (with streaming) Plugin | Bubble
or build it with API connector.
To add to this, can this data not be used to train the OpenAI models? As it would contain sensitive information
With the api connector, do I have to change anything in how I set the api up or is it a workflow?
You can train a Pinecone vector database, with your own information and use gpt4 to respond those questions
Youâd have to implement your own AI if youâre using the API connector and the biggest annoyance is (as of now), the Assistantâs API has no webhooks or ability to ping you when itâs finished a response so you have to use a âdo every XX secondsâ and wait for the status to be completed.
If you have sensitive info, I think the Assistants API keeps it private, Iâm not sure.