Official resources, documentation, and community links for Flowise.
| Resource |
URL |
Description |
| Official Website |
https://flowiseai.com |
Main Flowise website |
| Documentation |
https://docs.flowiseai.com |
Official documentation |
| Cloud |
https://flowiseai.com/pricing |
Flowise Cloud hosting |
| Resource |
URL |
Description |
| Main Repository |
https://github.com/FlowiseAI/Flowise |
Source code |
| Releases |
https://github.com/FlowiseAI/Flowise/releases |
Download releases |
| Issues |
https://github.com/FlowiseAI/Flowise/issues |
Bug tracking |
| Discussions |
https://github.com/FlowiseAI/Flowise/discussions |
Community discussions |
| Resource |
URL |
Description |
| PyPI |
https://pypi.org/project/flowise/ |
Python package |
| Documentation |
https://docs.flowiseai.com |
SDK docs |
| GitHub |
https://github.com/FlowiseAI/Flowise |
Source code |
| Resource |
URL |
Description |
| npm |
https://www.npmjs.com/package/flowise |
npm package |
| Installation |
npm install -g flowise |
Install command |
| Resource |
URL |
Description |
| Docker Hub |
https://hub.docker.com/r/flowise/flowise |
Official images |
| GitHub |
https://github.com/FlowiseAI/Flowise |
Docker files |
| Resource |
URL |
Description |
| GitHub Issues |
https://github.com/FlowiseAI/Flowise/issues |
Bug reports |
| GitHub Discussions |
https://github.com/FlowiseAI/Flowise/discussions |
Community Q&A |
| Discord |
Check docs for invite |
Community Discord |
| Reddit |
https://reddit.com/r/LocalLLaMA |
Community discussions |
| Platform |
Handle/URL |
Description |
| Twitter/X |
@FlowiseAI |
Official updates |
| LinkedIn |
/company/flowise |
Company updates |
| Method |
Command/Link |
| npm |
npm install -g flowise |
| Docker |
https://hub.docker.com/r/flowise/flowise |
| GitHub |
https://github.com/FlowiseAI/Flowise |
| Cloud |
https://flowiseai.com/pricing |
| Type |
Description |
| Stable |
Production-ready releases |
| Beta |
Pre-release testing |
| Provider |
URL |
Integration |
| OpenAI |
https://platform.openai.com |
GPT-4, GPT-3.5 |
| Anthropic |
https://console.anthropic.com |
Claude models |
| Google |
https://makersuite.google.com |
Gemini, PaLM |
| Ollama |
https://ollama.com |
Local models |
| Azure |
https://azure.microsoft.com |
Azure OpenAI |
| Provider |
URL |
Integration |
| Pinecone |
https://pinecone.io |
Vector search |
| Chroma |
https://trychroma.com |
Vector DB |
| FAISS |
https://faiss.ai |
Facebook AI Similarity Search |
| Weaviate |
https://weaviate.io |
Vector search engine |
| Resource |
URL |
Description |
| Swagger UI |
http://localhost:3000/api-docs |
Auto-generated API docs |
| API Reference |
https://docs.flowiseai.com |
API documentation |
| Endpoint |
Method |
Purpose |
/api/v1/prediction/{chatflowId} |
POST |
Create prediction |
/api/v1/chatflows |
GET/POST |
List/create flows |
/api/v1/nodes |
GET |
List available nodes |
curl http://localhost:3000/api/v1/prediction/{chatflowId} \
-H "Content-Type: application/json" \
-d '{"question": "Hello!"}'
| Resource |
URL |
Description |
| SDK Docs |
https://docs.flowiseai.com |
Python SDK |
| PyPI |
https://pypi.org/project/flowise/ |
Package info |
pip install flowise
from flowise import Flowise, PredictionData
client = Flowise()
completion = client.create_prediction(
PredictionData(
chatflowId="your-flow-id",
question="What is the capital of France?",
streaming=False
)
)
for response in completion:
print(response)
| Resource |
URL |
| LangChain |
https://python.langchain.com |
| Flowise Integration |
Built-in nodes |
¶ LlamaIndex
| Resource |
URL |
| LlamaIndex |
https://docs.llamaindex.ai |
| Note |
Being deprecated in Flowise v3.0+ |
| Resource |
URL |
| Prometheus |
https://prometheus.io |
| OpenTelemetry |
https://opentelemetry.io |
| Resource |
Type |
Description |
| YouTube Tutorials |
Video |
Setup and usage guides |
| Medium Articles |
Articles |
Community tutorials |
| Dev.to Guides |
Articles |
Developer guides |
| Blog Posts |
Articles |
Community experiences |
| Tool |
Description |
| LangChain |
LLM orchestration framework |
| LlamaIndex |
Data framework for LLMs |
| HuggingFace |
Model repository |
| Source |
Type |
| Flowise Blog |
https://flowiseai.com/blog |
| GitHub Releases |
https://github.com/FlowiseAI/Flowise/releases |
| Reddit r/LocalLLaMA |
Community discussions |
| Hacker News |
Tech discussions |
| Task |
Link |
| Download Flowise |
https://flowiseai.com |
| Report Bug |
https://github.com/FlowiseAI/Flowise/issues/new |
| Request Feature |
GitHub Discussions |
| View Changelog |
https://github.com/FlowiseAI/Flowise/releases |
| Setup Guide |
https://docs.flowiseai.com |
| API Docs |
http://localhost:3000/api-docs |
| Task |
Link |
| Installation |
https://docs.flowiseai.com |
| Environment Variables |
https://docs.flowiseai.com |
| API Configuration |
https://docs.flowiseai.com |
| Node Reference |
https://docs.flowiseai.com |
| Purpose |
Contact |
| General Inquiry |
Via website or GitHub |
| Support |
GitHub Issues |
| Security Issues |
GitHub Security tab |
- GitHub Issues - Bug reports (recommended)
- GitHub Discussions - Community Q&A
- Documentation - Self-help guides
- Discord - Community support (if available)
Any questions?
Feel free to contact us. Find all contact information on our contact page.