Build, host and run AI solutions.
Private AI workspace with RAG and agents — your documents, your models, your server.
AnythingLLM is an all-in-one open-source AI application that turns your documents into a private, queryable knowledge base. It ships as a single Docker image that runs on any 2 GB VPS and connects to whichever LLM you already use — Ollama (local), OpenAI, Anthropic, Mistral, LiteLLM, and more.
The built-in RAG engine ingests PDFs, Word docs, plain text, code repositories, YouTube transcripts, Notion pages, and Confluence spaces, then chunks, embeds, and indexes them into an integrated LanceDB vector store. Each workspace is isolated: different documents, different LLM, different system prompt. Ask a question and AnythingLLM retrieves the relevant chunks, passes them as context to your model, and returns a cited answer.
AnythingLLM also ships a no-code AI agent builder: string together web search, code execution, document retrieval, and external API calls without writing a line of code. User management with roles (admin, manager, default) makes it suitable for team deployments. MIT-licensed and 62k+ GitHub stars as of July 2026.
Upload your SOPs, contracts, and technical docs. Your team asks questions in natural language and gets accurate, cited answers — without sending any data to OpenAI.
Ingest your codebase, architecture docs, and API references. Use AnythingLLM as a private coding assistant that knows your stack and answers in context.
Expose AnythingLLM's REST API to power an AI chat widget on your product, trained exclusively on your own documentation.
Guide optimized for ServOrbit Cloud VPS.
Connect via SSH and run: docker run -d --restart=always -p 3001:3001 --cap-add SYS_ADMIN -v anythingllm-storage:/app/server/storage -e STORAGE_DIR=/app/server/storage --name anythingllm mintplexlabs/anythingllm:latest. The image (~700 MB) downloads once and starts in a few seconds. The named volume anythingllm-storage persists all documents, settings, and the SQLite database.
Open http://your-vps-ip:3001 in your browser. AnythingLLM detects a fresh install and walks you through creating the first admin account. This also sets the JWT secret used to sign all user sessions.
Go to Settings → LLM Provider. Choose Ollama (if running on the same VPS), OpenAI (enter your API key), or any supported provider. AnythingLLM tests the connection before saving. You can also point it at LiteLLM to switch providers without touching your workspace settings.
Click New Workspace, give it a name (e.g. "Product Docs"), then drag-and-drop PDFs or paste a URL. AnythingLLM chunks the content, generates embeddings, and stores them in LanceDB. Ask a question — the system retrieves the relevant chunks and passes them to your LLM.
Create a Caddyfile: ai.yourdomain.com { reverse_proxy localhost:3001 }. Run caddy run. Caddy automatically issues a Let's Encrypt certificate. AnythingLLM now serves over HTTPS on your custom domain.
Browse our help center and FAQ, or write to our team — support in French, English and Arabic.