- Clone the repo or download the ZIP
git clone [github https url]
- Install packages
First run npm install yarn -g to install yarn globally (if you haven't already).
or npm install
Then run:
yarn install
or
npm install
After installation, you should now see a node_modules folder.
- Set up your
.envfile
- Copy
.env.exampleinto.env
- npm run dev
- 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.
- Check that you've set the vector dimensions to
1536you can use the free plan
- In
utils/makechain.tschain change theQA_PROMPTfor your own usecase. ChangemodelNameinnew OpenAItogpt-4, if you have access togpt-4api. Please verify outside this repo that you have access togpt-4api, otherwise the application will not work.
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.
- Go to the webapp frontend running in your browser (npm run dev), input the public github URL and click process (or ingest button, one or the other will download a zip file) and it will fetch all the repo data with the github api and more and make it all into a zip file.
- Unzip the zip file into
docsfolder in the source code (you can keep it all in one folder)
-
Now that you have a folder in the
docsfolder that contains all the processed files from your github URL, go to terminal and run: -
Run the script
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.
In general, keep an eye out in the issues and discussions section of this repo for solutions.
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