Flowise
Browse articles on Flowise — tutorials, guides, and in-depth comparisons.
Flowise is an open-source, self-hosted platform for building LLM workflows visually. You drag and drop nodes — LLMs, vector stores, memory, tools — to create chatbots, RAG pipelines, and AI agents without writing backend code.
Flowise vs Alternatives
| Tool | Code required | Self-host | LLM focus | Best for |
|---|---|---|---|---|
| Flowise | None | ✅ Free | ✅ Native | LLM pipelines, RAG chatbots |
| n8n | Optional JS | ✅ Free | Partial | General automation + AI |
| LangFlow | None | ✅ Free | ✅ Native | LangChain visual builder |
| Dify | None | ✅ Free | ✅ Native | Full LLM app platform |
| Botpress | None | ✅ | Partial | Conversational bots |
Quick Start
# Self-host with Docker (recommended)
docker run -d \
-p 3000:3000 \
-v flowise_data:/root/.flowise \
--name flowise \
flowiseai/flowise
# Open http://localhost:3000
# No account needed for self-hosted
What You Can Build
- RAG Chatbot — upload PDFs, Word docs, or URLs → chat with your documents
- AI Agent — give the LLM tools (web search, calculator, code execution) → autonomous task solving
- Conversational Flow — multi-turn chatbot with memory and session handling
- API Endpoint — expose any chatflow as a REST API or embeddable widget
Learning Path
- Setup Flowise — Docker self-host or Flowise Cloud
- Build a simple chatbot — ChatOpenAI node + conversation memory
- Add RAG — PDF loader → text splitter → vector store → retrieval chain
- Deploy as API — embed in your website or call from your app
- Multi-agent — supervisor agent + specialized worker agents
- Connect Ollama — replace OpenAI with a local model for full privacy
Supported LLM Providers
Flowise connects to OpenAI, Anthropic Claude, Google Gemini, Mistral, Cohere, Ollama (local), LM Studio, and any OpenAI-compatible endpoint — switchable per node without code changes.
Showing 1–16 of 16 articles
- Integrate OpenAI Assistants with Flowise: Step-by-Step 2026
- Flowise Zapier Integration: Trigger Workflows Externally
- Flowise Webhook: Receive External Events in Chatflows
- Flowise vs Botpress: AI Chatbot Builder Comparison 2026
- Flowise PostgreSQL Vector Store: Long-Term Memory Setup
- Flowise Pinecone RAG: Production Document Search Chatbot 2026
- Flowise Ollama Integration: Local LLM Workflows 2026
- Flowise Multi-Agent Workflow: Supervisor and Worker Pattern
- Flowise Monitoring: Logs and Analytics Dashboard Setup
- Flowise MongoDB Memory: Persistent Chatbot Conversations
- Flowise Custom Tool Node: Extend Agents with JavaScript
- Flowise API Endpoint: Embed Chatbot in Any Website
- Deploy Flowise with Docker and Custom Credentials: 2026 Guide
- Deploy Flowise on AWS EC2: Production Setup Guide 2026
- Flowise vs LangFlow: Which No-Code AI Builder Should You Use?
- Flowise RAG Chatbot: Build Without Writing Code