10 minutes to a working FAQ chatbot
Create a 'Conversational Retrieval QA Chain' flow: add a Document Loader node (upload files), add a Vector Store node (Pinecone/Chroma/Qdrant), add an LLM node (OpenAI/Anthropic/local), connect with arrows, click 'Chat' to test. For the saas.pet FAQ bot, I uploaded 96 review markdown files as documents. The bot correctly answered 'what is the best video editing AI?' by retrieving the relevant review and summarizing the pros/cons. Total setup time: 10 minutes.
The node ecosystem: 100+ integrations
Flowise has nodes for: 20+ document loaders (PDF, CSV, GitHub, Notion, web pages), 10+ vector stores (Pinecone, Chroma, Qdrant, Weaviate, Supabase), 15+ LLM providers, memory (buffer, summary, Zep), and tools (calculator, search, custom API). The node marketplace is community-driven: new nodes are added weekly. For common integrations (Slack bot, Discord bot, WhatsApp), there are pre-built templates.
Self-hosting and the surprisingly good API
`npx flowise start` launches the UI at localhost:3000. The API is at localhost:3000/api/v1. You can create flows via the UI, then call them via REST: `POST /api/v1/prediction/{flow-id}` with a JSON body containing the question. This means you can build and test flows in the UI, then embed them in your app with a simple API call. The API also supports streaming responses for real-time chat.
What Flowise cannot do
No custom Python code execution in flows (unlike LangFlow or Dify). No complex branching logic beyond 'retrieve then answer.' No multi-agent workflows. No fine-tuning or training. No A/B testing of different prompts. Flowise is purpose-built for chatbots and document Q&A. For anything beyond that, use LangFlow, Dify, or raw LangChain.
Flowise vs LangFlow vs Dify
Flowise: simplest, fastest to chatbot, limited beyond chat. Best for RAG chatbots and document Q&A. LangFlow: visual LangChain, exports to Python, most flexible. Best for LangChain developers. Dify: best for complete AI apps with agents and tool calling. Best for production AI apps.