AnythingLLM: A document chatbot to chat with anything!.
An efficient, customizable, and open-source enterprise-ready document chatbot solution.
| | Docs | Hosted Instance
A full-stack application that enables you to turn any document, resource, or piece of content into context that any LLM can use as references during chatting. This application allows you to pick and choose which LLM or Vector Database you want to use. ![Chatting](/images/screenshots/chatting.gif) [view more screenshots](/images/screenshots/SCREENSHOTS.md) ### Watch the demo! [![Watch the video](/images/youtube.png)](https://youtu.be/f95rGD9trL0) ### Product Overview AnythingLLM aims to be a full-stack application where you can use commercial off-the-shelf LLMs or popular open source LLMs and vectorDB solutions. Anything LLM is a full-stack product that you can run locally as well as host remotely and be able to chat intelligently with any documents you provide it. AnythingLLM divides your documents into objects called `workspaces`. A Workspace functions a lot like a thread, but with the addition of containerization of your documents. Workspaces can share documents, but they do not talk to each other so you can keep your context for each workspace clean. Some cool features of AnythingLLM - Multi-user instance support and oversight - Atomically manage documents in your vector database from a simple UI - Two chat modes `conversation` and `query`. Conversation retains previous questions and amendments. Query is simple QA against your documents - Each chat response contains a citation that is linked to the original content - Simple technology stack for fast iteration - 100% Cloud deployment ready. - "Bring your own LLM" model. - Extremely efficient cost-saving measures for managing very large documents. You'll never pay to embed a massive document or transcript more than once. 90% more cost effective than other document chatbot solutions. - Full Developer API for custom integrations! ### Supported LLMs and Vector Databases **Supported LLMs:** - [OpenAI](https://openai.com) - [Azure OpenAI](https://azure.microsoft.com/en-us/products/ai-services/openai-service) - [Anthropic ClaudeV2](https://www.anthropic.com/) - [LM Studio (all models)](https://lmstudio.ai) **Supported Vector Databases:** - [LanceDB](https://github.com/lancedb/lancedb) (default) - [Pinecone](https://pinecone.io) - [Chroma](https://trychroma.com) - [Weaviate](https://weaviate.io) - [QDrant](https://qdrant.tech) ### Technical Overview This monorepo consists of three main sections: - `collector`: Python tools that enable you to quickly convert online resources or local documents into LLM useable format. - `frontend`: A viteJS + React frontend that you can run to easily create and manage all your content the LLM can use. - `server`: A nodeJS + express server to handle all the interactions and do all the vectorDB management and LLM interactions. ### Requirements - `yarn` and `node` on your machine - `python` 3.9+ for running scripts in `collector/`. - access to an LLM service like `GPT-3.5`, `GPT-4`, `Mistral`, `LLama`, etc. - (optional) a vector database like Pinecone, qDrant, Weaviate, or Chroma*. *AnythingLLM by default uses a built-in vector db called LanceDB. ## How to get started (Docker - simple setup) `docker pull mintplexlabs/anythingllm:master` `docker run -d -p 3001:3001 mintplexlabs/anythingllm:master` Go to `http://localhost:3001` and you are now using AnythingLLm! [More about running AnythingLLM with Docker](./docker/HOW_TO_USE_DOCKER.md) ### How to get started (Development environment) - `yarn setup` from the project root directory. - This will fill in the required `.env` files you'll need in each of the application sections. Go fill those out before proceeding or else things won't work right. - `cd frontend && yarn install && cd ../server && yarn install` from the project root directory. To boot the server locally (run commands from root of repo): - ensure `server/.env.development` is set and filled out. `yarn dev:server` To boot the frontend locally (run commands from root of repo): - ensure `frontend/.env` is set and filled out. - ensure `VITE_API_BASE="http://localhost:3001/api"` `yarn dev:frontend` Next, you will need some content to embed. This could be a Youtube Channel, Medium articles, local text files, word documents, and the list goes on. This is where you will use the `collector/` part of the repo. [Go set up and run collector scripts](./collector/README.md) [Learn about documents](./server/storage/documents/DOCUMENTS.md) [Learn about vector caching](./server/storage/vector-cache/VECTOR_CACHE.md) ## Contributing - create issue - create PR with branch name format of `