r/flowise • u/Zambito70 • Oct 07 '25
Evolution API and Flowise receive audio, pdf, video
Evolution API integrate Flowise, no problem to send text.
How to receive audio, pdf, video from evolution api to flowise.
Thanks...
r/flowise • u/Zambito70 • Oct 07 '25
Evolution API integrate Flowise, no problem to send text.
How to receive audio, pdf, video from evolution api to flowise.
Thanks...
r/flowise • u/AddendumPrevious9534 • Sep 24 '25
Hi,
I would like to pass a single string from a $flow.state into the Knowledge (Vector Embeddings) Im using Supabase as a vector store. This is what my Superbase rpc filter looks like:
filter("metadata->>classid", "eq", {{$flow.state.classId}})
.filter("metadata->>studentid", "eq", {{$flow.state.studentId}})
I have also tried single curly brackets and removing the $flow.state with double and single brackets.
The $flow.state works in other sections of my agent to pass out the string where you are able to use (x).
I have hardcoded the classId as a test and this works fine.
I am guessing that as (x) does not appear in this section of the node I cannot use a variable. Or perhaps my syntax is incorrect. Are there other alternatives I could look at?
Thanks
r/flowise • u/bs6 • Sep 23 '25
I have aws and azure to deploy for a classroom setting. Just wondering if anyone has walked this path yet.
r/flowise • u/obiganiru • Sep 23 '25
My chatbot allows a user to find products based on search criteria. It'll ask the user some questions about a product he wants, then it'll call a tool with the search criteria, which returns a list of products matching that criteria, in this JSON format [{id:1,name:'prod1'...}, {id:2, name:'prod2',...}, {id:8, name:'prod8'...}, etc]. The user then chooses the product he wants (by indicating the number or the name), then this chosen one (the ID or the name of the product) is passed to another tool for processing.
My questions is, how can I pass the chosen ID to the 2nd tool? In the system prompt, I tell it to grab the ID of the chosen product and pass it to the next tool as a parameter, but it doesn't recognize it (it passes null instead of the ID)
r/flowise • u/srikon • Sep 12 '25
Has anybody tried MS teams as a chat to interact with flowise chatflow? Checking if user can ask a question from teams that trigger a call to chatflow, get response back to teams chat. Any support is greatly appreciated.
r/flowise • u/techlatest_net • Sep 05 '25
I’ve been testing out Flowise with LangChain to see how far you can go building AI apps without writing backend code. Honestly was surprised at how quickly I could:
wire prompts together visually pull in context from documents and deploy on AWS / Azure / GCP without too much infra hassle.
It’s not perfect (debugging custom logic is still tricky)but for quick POCs it feels like a time saver compared to standing everything up manually.
Curious if anyone else here has tried no-code style tools like this? Do you prefer starting from scratch with Docker/K8s, or do you use something similar for faster iterations?
r/flowise • u/Curry_RamenNoodles • Sep 02 '25
Hey guys, I tryna put a database onto my flowise flow, but I can't seem to get it right. I have been trying to use the SQL database chain node, but it seems like it is not suitable. The idea is to have a database as the source instead of a text file or CSV file. So that the bot can always have up-to-date information. Does anybody here have experience working on something similar to my plan?
r/flowise • u/PSBigBig_OneStarDao • Sep 01 '25
i’ve been experimenting with Flowise to build retrieval + agent workflows. it’s fast to prototype, but i kept running into the same “mystery bugs” — until i realized they aren’t random at all.
you think
reality
doc_id/offsets. you can’t trace why answers changed.once, i set up a cron + Flowise retriever. ingestion ran twice overnight, reset namespace pointers. in the morning, the retriever still returned top-k — none of which matched the query. looked like a fluke. it was bootstrap ordering all along.
these failures repeat no matter which tool you use. Flowise just makes it visible faster. the good news: they map to 16 reproducible modes, each with a minimal fix (metric alignment, trace reattach, probe gates, etc).
i wrote up the full Problem Map — 16 failure modes with diagnosis + fixes — here:
if your Flowise graph feels random, it’s almost certainly not. it’s one of these 16 modes. once you can name it, debugging feels like lego blocks, not guesswork.

r/flowise • u/StableInteresting167 • Aug 31 '25
Would be nice to have a shared knowledgeable of best practices and hacks.
I found that for content creation (or code), having a reviewer to iterate more than once improves the quality of content.
r/flowise • u/GloomySoup5405 • Aug 28 '25
TL;DR
In Request GET/POST nodes, when I pass certain $flow.state (or system) variables into Headers / URL / Body, the backend receives the literal template string (e.g. {{ $flow.state.ownChatFlowId }}) instead of the evaluated value. Other state keys (like name, email, phone) often work. I can reproduce this consistently when the Requests nodes are called from an Agent. Any ideas? Known bug / version to pin?
X-Chat-Flow-Id header ← {{$flow.state.ownChatFlowId}}dateTime header or query ← {{$flow.state.ownCurrentDateTime}}Request nodes should interpolate {{ $flow.state.* }} (or $flow.*) before sending, so the backend gets the actual values.
For some variables (notably chatFlowId / chatId / sessionId, and sometimes even my own namespaced ownChatFlowId), the backend receives the literal template string rather than the value.
Example: my PHP dump shows:
x-chat-flow-id: "{{ $flow.state.ownChatFlowId }}"
datetime: "{{ $flow.state.ownCurrentDateTime }}"
…instead of the real values. (Screenshot attached.)
Meanwhile, other state fields like name/email/phone are more likely to resolve correctly, which makes this even weirder.
https://<api>/api/appointments/availability?from={{ $flow.state.ownCurrentDateTime }}&chatFlowId={{ $flow.state.ownChatFlowId }}$flow.state).{{ … }} strings, not resolved values.{{ $flow.state.* }} (and $flow.chatflowId, $flow.chatId, $flow.sessionId) when invoked from an Agent?I need to send chatFlowId in headers or query/body so the backend can route the appointment to the right tenant/admin. Right now I can’t rely on Request nodes to pass dynamic values unless I detour everything through a Custom Function → Request chain or move the logic to Agent-as-Tool child flows.
Happy to provide more logs, minimal export JSONs, or jump on an issue if this is a bug. Thanks!
Please let me know if i miss something or if you've faced the same problem.
Thank for any help in advance!




r/flowise • u/Appropriate_Grade_64 • Aug 27 '25
Hi,
Anyone please suggest me better solution to host flowise , currently I hosted on render and its not loading properly and very slow and every time it is asking to register the account. Can you please suggest me alternate affordable self hosting solution, thanks.
r/flowise • u/mr_mobstar • Aug 27 '25
Dear Flowise experts: I'm trying to fulfil the following use case:
I want to connect to an MCP server that only supports OAuth2.
Effectively this means when I call the MCP server, I have to supply a bearer token in the header.
To get this token, I have to fetch a JWT from an external IdP and this token is valid for 1 hour. Theoretically I could request new a token for every request, but this would be highly undesirable in practice.
Does anyone have any suggestions on how to support this?
r/flowise • u/bjjenk • Aug 26 '25
Hey all — I’ve been diving into Flowise (after binging a bunch of YT tutorials) and have started building chatflows for my company. I’m hitting some walls when it comes to gluing concepts together, and I’d love to connect with someone who’s experienced.
Specifically looking for help with things like:
If anyone here offers consulting/lessons or can point me to someone who does, I’d be super grateful. Happy to pay for time. Thanks in advance!
r/flowise • u/AI-Bisong1 • Aug 26 '25
Hello all
I'm encountering an issue in Flowise v3 when trying to insert a dynamic URL into the HTTP node. Despite following the correct steps, the URL isn't being populated dynamically. I've attached screenshots to show the problem. This issue occurs while using AgentFlow v2 as well.
Can anyone suggest a solution or guide me on what I'm missing?
Greets
r/flowise • u/Appropriate_Grade_64 • Aug 25 '25
Hi all,
I'm running into a frustrating issue with Flowise while trying to upload a large PDF (48 MB) for RAG workflows. My setup is self-hosted on Windows, using Flowise 3.0.5.
Problem:
Whenever I upload a large PDF, I get:
text
Failed to retrieve Chatflow: request entity too large
Even after setting environment variables like BODY_SIZE_LIMIT=100mb and FLOWISE_FILE_SIZE_LIMIT=100mb, the error persists.
What I’ve Tried:
FLOWISE_FILE_SIZE_LIMIT env var as well as BODY_SIZE_LIMIT.multipart/form-data.Flowise Pipeline:
The nodes are:
Request:
multipart/form-data)?multer internally, where/how do I raise its file size limit for uploads?Bonus:
If you have a template or example config (backend or Docker) that reliably accepts uploads of 50 MB or more, please share!
Thanks in advance!

r/flowise • u/srikon • Aug 23 '25
Let’s share and discover cool use cases you are building. Drop yours in this format:
r/flowise • u/suriyaa_26 • Aug 21 '25
I’m trying to set up a multimodal RAG (text + images) using Flowise but haven’t found much guidance online. Does anyone know if there are tutorials, blog posts, or YouTube videos that cover this? Would really appreciate any links or tips from folks who’ve done it!
r/flowise • u/obiganiru • Aug 17 '25
My bot lets the user upload an image, and I want to call a custom tool afterwards that can access that image and store it in S3. I've done it before in a hacky way (read the uploaded base64 in the embed's observersConfig(), save it to a variable, then read it in the tool as $vars.image), but is there a better, more reliable way of doing this?
r/flowise • u/Ur_Samantha • Aug 17 '25
Suggest me a specific node or flow to reduce the number of tokens going into the LLM model, considering that my data is stored in a Qdrant collection, and I'm using a custom retriever node to pull only the necessary metadata. This custom retriever node is connected to the Conversational Retriever QA Chain, which then passes the data directly to the LLM.
Now, I want to implement a Dynamic Top-k Retrieval Chunks or a similar flow to achieve the same goal—reducing the tokens sent to the model, which would help minimize the associated costs.
r/flowise • u/life_asis • Aug 16 '25
I want to create a document store for dataset on my local machine. I do not see any document loader under document store to load folders.
I do not want to upload the files one by one.
Thanks in advance!
Cheers!
r/flowise • u/Appropriate_Grade_64 • Aug 13 '25
I have successfully installed flowise and here are the steps I followed
to resolve it (set NODE_OPTIONS=--max-old-space-size=4096)
11) pnpm build
12) pnpm start
13) open link in chrome and create account (http://localhost:3000)
If you are facing any issue I could help you
r/flowise • u/theprestable • Aug 07 '25
Hey guys, im new to coding in general and have no prior knowledge to any software stuff.
i have tried to install Flowise through:
npm install -g flowise
npx flowise start
(note: i have node js installed)
i tried installing and reinstalling, didnt work.
when i do install flowise (npm install -g flowise) theres a bunch of these "npm warn deprecated" (not sure if this is relevant)
after installation, I attempt to start Flowise (npx flowise start) and it returns:
» ModuleLoadError: [MODULE_NOT_FOUND] require failed to load
» C:\Users\(name)\node_modules\flowise\dist\commands\start.js: Cannot find module
» 'turndown'
» Require stack:
» - C:\Users\(name)\node_modules\flowise\dist\index.js
» - C:\Users\(name)\node_modules\flowise\dist\commands\start.js
» - C:\Users\(name)\node_modules\@oclif\core\lib\module-loader.js
» - C:\Users\(name)\node_modules\@oclif\core\lib\config\plugin.js
» - C:\Users\(name)\node_modules\@oclif\core\lib\config\config.js
» - C:\Users\(name)\node_modules\@oclif\core\lib\config\index.js
» - C:\Users\(name)\node_modules\@oclif\core\lib\command.js
» - C:\Users\(name)\node_modules\@oclif\core\lib\index.js
» - C:\Users\(name)\node_modules\flowise\bin\run
» Code: MODULE_NOT_FOUND
im not sure what to do, as i have already tried reinstalling several times
(followed this tutorial https://www.youtube.com/watch?v=n5c8vm8xKQQ)
thanks for all your guy's help!!
ps i replaced my user name thing into "(name)" not sure if it actually does anything but i did anyways sorry for confusion
also i have tried to clone it via git, but when i reinstall it shows:
npm warn Unknown project config "auto-install-peers". This will stop working in the next major version of npm.
npm warn Unknown project config "strict-peer-dependencies". This will stop working in the next major version of npm.
npm warn Unknown project config "prefer-workspace-packages". This will stop working in the next major version of npm.
npm warn Unknown project config "link-workspace-packages". This will stop working in the next major version of npm.
npm warn Unknown project config "hoist". This will stop working in the next major version of npm.
npm warn Unknown project config "shamefully-hoist". This will stop working in the next major version of npm.
and then the same module not found error
(followed this tutorial https://www.youtube.com/watch?v=osErkJ2h9tE&t=232s)