Welcome to the Local Web Chatbot! This is a direct fork of Jacob Lee' fully local PDF chatbot replacing the chat with PDF functionality with chat with website support powered by Firecrawl. It is a simple chatbot that allows you to ask questions about a website by embedding it and running queries against the vector store using a local LLM and embeddings.
You can run more powerful, general models outside the browser using Ollama's desktop app. Users will need to download and set up then run the following commands to allow the site access to a locally running Gemma 2 instance:
$ OLLAMA_ORIGINS=https://webml-demo.vercel.app OLLAMA_HOST=127.0.0.1:11435 ollama serve
Then, in another terminal window:
$ OLLAMA_HOST=127.0.0.1:11435 ollama pull gemma2
$ set OLLAMA_ORIGINS=https://webml-demo.vercel.app
set OLLAMA_HOST=127.0.0.1:11435
ollama serve
Then, in another terminal window:
$ set OLLAMA_HOST=127.0.0.1:11435
ollama pull gemma2
Additionally, you will need a Firecrawl API key for website embedding. Signing up for Firecrawl is easy and you get 500 credits free. Enter your API key into the box below the URL in the embedding form.
It uses the following:
- Voy as the vector store, fully WASM in the browser.
- Ollama.
- LangChain.js to call the models, perform retrieval, and generally orchestrate all the pieces.
- Transformers.js to run open source Nomic embeddings in the browser.
- For higher-quality embeddings, switch to
"nomic-ai/nomic-embed-text-v1"
inapp/worker.ts
.
- For higher-quality embeddings, switch to
- Firecrawl to scrape the webpages and deliver them in markdown format.
To run/deploy this yourself, simply fork this repo and install the required dependencies with yarn
.
There are no required environment variables, but you can optionally set up LangSmith tracing while developing locally to help debug the prompts and the chain. Copy the .env.example
file into a .env.local
file:
# No environment variables required!
# LangSmith tracing from the web worker.
# WARNING: FOR DEVELOPMENT ONLY. DO NOT DEPLOY A LIVE VERSION WITH THESE
# VARIABLES SET AS YOU WILL LEAK YOUR LANGCHAIN API KEY.
NEXT_PUBLIC_LANGCHAIN_TRACING_V2="true"
NEXT_PUBLIC_LANGCHAIN_API_KEY=
NEXT_PUBLIC_LANGCHAIN_PROJECT=
Just make sure you don't set this in production, as your LangChain API key will be public on the frontend!
Huge thanks to Jacob Lee and the other contributors of the repo for making this happen! Be sure to give him a follow on Twitter @Hacubu!