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.
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
conversation
and query
. Conversation retains previous questions and amendments. Query is simple QA against your documentsSupported LLMs:
Supported Vector Databases:
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.yarn
and node
on your machinepython
3.9+ for running scripts in collector/
.GPT-3.5
, GPT-4
, Mistral
, LLama
, etc.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
yarn setup
from the project root directory.
.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):
server/.env.development
is set and filled out.
yarn dev:server
To boot the frontend locally (run commands from root of repo):
frontend/.env
is set and filled out.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
<issue number>-<short name>
AnythingLLM by Mintplex Labs Inc contains a telemetry feature that collects anonymous usage information.
We use this information to help us understand how AnythingLLM is used, to help us prioritize work on new features and bug fixes, and to help us improve AnythingLLM's performance and stability.
Set DISABLE_TELEMETRY
in your server or docker .env settings to "true" to opt out of telemetry.
DISABLE_TELEMETRY="true"
We will only track usage details that help us make product and roadmap decisions, specifically:
You can verify these claims by finding all locations Telemetry.sendTelemetry
is called. Additionally these events are written to the output log so you can also see the specific data which was sent - if enabled. No IP or other identifying information is collected. The Telemetry provider is PostHog - an open-source telemetry collection service.