Use the new GPT-4 api to build a chatGPT chatbot for multiple Large PDF files.
Tech stack used includes LangChain, Pinecone, Typescript, Openai, and Next.js. LangChain is a framework that makes it easier to build scalable AI/LLM apps and chatbots. Pinecone is a vectorstore for storing embeddings and your PDF in text to later retrieve similar docs.
Join the discord if you have questions
The visual guide of this repo and tutorial is in the visual guide folder.
If you run into errors, please review the troubleshooting section further down this page.
Prelude: Please make sure you have already downloaded node on your system and the version is 18 or greater.
- Clone the repo or download the ZIP
git clone [github https url]
- Set up your
.envfile
- Copy
.env.exampleinto.envYour.envfile should look like this:
OPENAI_API_KEY=
PINECONE_API_KEY=
PINECONE_ENVIRONMENT=
PINECONE_INDEX_NAME=
PINECONE_NAME_SPACE=
- DMake sure you have these two things setup.
-
Check that you've set the vector dimensions to
1536. -
Make sure your pinecone namespace is in lowercase.
-
Index name is the one you supplied, not the long url link as I wrongly assumed and got weird PDF errors. (This is what prompted the addition of the python pdf uploads)
-
Visit openai to retrieve API keys and insert into your
.envfile. -
Visit pinecone to create and retrieve your API keys, and also retrieve your environment and index name from the dashboard.
- Build the app.
docker compose build app
- In
utils/makechain.tschain change theQA_PROMPTfor your own usecase. ChangemodelNameinnew OpenAItogpt-3.5, if you don't have access togpt-4api.
This repo can load multiple PDF files
-
Inside
docsfolder, add your pdf files or folders that contain pdf files. -
Run the script
docker compose run app npm run ingestto 'ingest' and embed your docs. If you run into errors troubleshoot below. -
Check Pinecone dashboard to verify your namespace and vectors have been added.
Once you've verified that the embeddings and content have been successfully added to your Pinecone, you can run the app docker compose up app to launch the local dev environment, and then type a question in the chat interface.
In general, keep an eye out in the issues and discussions section of the cloned repo for solutions.
https://github.com/mayooear/gpt4-pdf-chatbot-langchain
General errors
- Make sure you're running the latest Node version. Run
node -v - Try a different PDF or convert your PDF to text first. It's possible your PDF is corrupted, scanned, or requires OCR to convert to text.
Console.logtheenvvariables and make sure they are exposed.- Make sure you're using the same versions of LangChain and Pinecone as this repo.
- Check that you've created an
.envfile that contains your valid (and working) API keys, environment and index name. - If you change
modelNameinOpenAI, make sure you have access to the api for the appropriate model. - Make sure you have enough OpenAI credits and a valid card on your billings account.
- Check that you don't have multiple OPENAPI keys in your global environment. If you do, the local
envfile from the project will be overwritten by systemsenvvariable. - Try to hard code your API keys into the
process.envvariables if there are still issues.
Pinecone errors
- Make sure your pinecone dashboard
environmentandindexmatches the one in thepinecone.tsand.envfiles. - Check that you've set the vector dimensions to
1536. - Make sure your pinecone namespace is in lowercase.
- Pinecone indexes of users on the Starter(free) plan are deleted after 7 days of inactivity. To prevent this, send an API request to Pinecone to reset the counter before 7 days.
- Retry from scratch with a new Pinecone project, index, and cloned repo.
Frontend of this repo is inspired by langchain-chat-nextjs