Skip to content

Semantic Search using Pinecone (A project in a hiring challenge from Mercor.io)

Notifications You must be signed in to change notification settings

gaurangi99/Semantic-Search

Repository files navigation

GPT-3.5 Turbo & LangChain - Create a ChatGPT Chatbot for Your PDF Files

Use the GPT-3.5 Turbo 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.

Prelude: Please make sure you have already downloaded node on your system and the version is 18 or greater.

Development

  1. Install packages

First run npm install yarn -g to install yarn globally (if you haven't already).

Then run:

yarn install

After installation, you should now see a node_modules folder.

  1. Set up your .env file
  • Copy .env.example into .env Your .env file should look like this:
OPENAI_API_KEY=

PINECONE_API_KEY=
PINECONE_ENVIRONMENT=

PINECONE_INDEX_NAME=

  • Visit openai to retrieve API keys and insert into your .env file.
  • Visit pinecone to create and retrieve your API keys, and also retrieve your environment and index name from the dashboard.
  1. In the config folder, replace the PINECONE_NAME_SPACE with a namespace where you'd like to store your embeddings on Pinecone when you run npm run ingest. This namespace will later be used for queries and retrieval.

  2. In utils/makechain.ts chain change the QA_PROMPT for your own usecase.

Convert your PDF files to embeddings

This repo can load multiple PDF files

  1. Inside docs folder, add your pdf files or folders that contain pdf files.

  2. Run the script npm run ingest to 'ingest' and embed your docs. If you run into errors troubleshoot below.

  3. Check Pinecone dashboard to verify your namespace and vectors have been added.

Run the app

Once you've verified that the embeddings and content have been successfully added to your Pinecone, you can run the app npm run dev to launch the local dev environment, and then type a question in the chat interface.

References:

The code has been written referring the following YouTube tutorial: https://www.youtube.com/watch?v=ih9PBGVVOO4 and referred the GitHub repo: https://github.com/mayooear/gpt4-pdf-chatbot-langchain for understanding and production of the whole chatbot. Thanks to him!

About

Semantic Search using Pinecone (A project in a hiring challenge from Mercor.io)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published