Activity
Mon
Wed
Fri
Sun
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
What is this?
Less
More

Memberships

Mester Manualen

17 members • Free

AI Workshop Lite

12.8k members • Free

AI Automation Society Plus

3.1k members • $94/month

AI Growth Tribe

2k members • Free

NextGen Lite

2.3k members • Free

AI Automation Society

208.5k members • Free

AI Automation Agency Hub

274.7k members • Free

OM
Online Mentorforløb

2.6k members • Free

AI Fellowship Hub

8.7k members • Free

11 contributions to AI Automation Society
🚀New Video: How to Automate ANY Content with Poppy and n8n (no code)
In this video, I show how to use Poppy AI with n8n to completely automate your content creation process. $25 OFF Poppy AI HERE Poppy lets you build specialized AI assistants that can be trained on almost anything, YouTube videos, TikToks, Instagram posts, websites, or even your own local files. Just drag and drop the media, and your Poppy assistant can use it to get smarter. From there, you can connect Poppy with n8n to automate research, content generation, or any part of your creative workflow. The best part is that it’s all no-code, making it simple and powerful for anyone to start building AI-driven content systems.
5 likes • Sep 30
@Yash Chauhan Hey Yash How are the tokens in Poppy billed? Do you have to connect API keys or does the yearly payment include token usage? It seems that you're using it 😁
[SOLVED] Flowise chatbot & Supabase SQL Editor error
Hey guys So I previously built a chatbot with the help of @Mirko Salzer in Flowise. The knowledge base for the chatbot I upserted into a Supabase Vector Database, so the chatbot queries the database and thereby answers the user's question. The chatbot worked without issues. However, now that I have exported the chatflow from my Flowise instance so I can import it into a business' Flowise instance I receive an error message when chatting with it. It does apparently not read my database and retrieve any information. Kinda weird since it worked in my own instance with the exact same SQL code. - You can see my Flowise chatflow in picture 1. - You can see the error message in picture 2. - You can see the SQL Editor code I used to set up my Supabase DB. Any clues? :) I have tried running it through chatgpt and will keep doing so - but it just doesn't make much sense.
[SOLVED] Flowise chatbot & Supabase SQL Editor error
0 likes • May 29
Hey Everyone I've been struggling with this problem for 1,5 days straight, and what I've learned is that I lack knowledge. I'm quite new to this whole Database thing, but I solved it. So to anyone who might need this - here's the solution. The picture also shows the solution. This is all due to a one line mess up. Here's a Github thread for the answer as well: https://github.com/orgs/supabase/discussions/23207 Set search_path = public (doesn't work) It has to say: >>>>>Set search_path = public, extensions<<<<< Why this works you can figure out yourself by asking an LLM :) Here is my fully working SQL Editor syntax for Supabase: create schema if not exists extensions; create extension vector with schema extensions; -- Recreate the table with the correct vector reference create table documents ( id bigserial primary key, content text, metadata jsonb, embedding extensions.vector(1536) -- Note the new schema prefix ); -- Recreate the function create or replace function match_documents ( query_embedding extensions.vector(1536), match_count int default null, filter jsonb default '{}' ) returns table ( id bigint, content text, metadata jsonb, similarity float ) language plpgsql set search_path = public, extensions as $$ #variable_conflict use_column begin return query select id, content, metadata, 1 - (documents.embedding <=> query_embedding) as similarity from documents where metadata @> filter order by documents.embedding <=> query_embedding limit match_count; end; $$;
Route Planner Agent - Google Maps API's [Kinda Solved]
Hey guys 👋 I'm trying to figure out how I connect my n8n instance with the Google Maps Directions API and ask for an effective route based on a list of addresses 🗺️ So my workflow is intended to work like this: - A have a spreadsheet full of clients with their corresponding addresses, and last inspection dates. - Each client needs inspection of their facilities on a given time each year. - I now want to connect a chat trigger to an AI agent, that has the spreadsheet and the Google Maps Direction API as tools. Based on these tools it should be able to read the 'last inspection date" and address from the sheet and based on my demand from the chat, it should reply with a list in chronological order displaying which clients to visit based on their address and last inspection date. All I know is that I have to connect the Google Maps Directions API by using an HTTP request node - and that's it 😳 Have any of you guys had any luck with this? 🙏
1 like • May 17
@Nico Asd Okay! That's an honest thought! Thank you 🙏 I figured out how to set up all the API Keys I need in n8n, so now it's all about figuring out how to make my use case user friendly, so it's not over-engineered 🙂
0 likes • May 19
@Oliver B. Yes you are completely right. I figured it out. Thanks! The criterias for an optimized route is the hardest part - that has to come from the business 🙂
Does Flowises' open source code on Github automatically update node version?
So I've been wondering if I manually have to update the node version for my Flowise instance, or if clicking the "Sync fork" once in a while on Github will do the work? I guess at some point node versions will reach their End of Life and needs to be updated.... What do you guys say?
2
0
Does Flowises' open source code on Github automatically update node version?
IS THIS setup overkill or not? [Solved]
How would you solve a case like this? CASE: I have a spreadsheet with customer questions in one column and a categorization of the customers' questions in a second column. Once a month, I want my agent to create a report based on the information in the spreadsheet. The questions are divided into 11 categories. In the report, I would like to have a section/paragraph for each category along with the most frequently asked questions within each respective category. Now, the spreadsheet can vary from a couple of 100s to 1000s of questions. In each category section in the report, I would like to highlight the 10 mest FAQs. Here are my thoughts: ❌ If I insert all questions from the spreadsheet into ONE AI-agent node (let's say 1000 questions), it will (in my mind) with 100% certainty fail, because it's simply processing to many questions and categories. ❌ If I make a filter and filter all questions by category and then based on the category activate a separate sub-flows (11 subflows because of the 11 categories), I will have to switch between 11 sub-flows when making changes or handling errors. This, in my mind doesn't sound like the solution. ✅ This is what I'm thinking - everything inside the same workflow. See the picture (It's not done). Trigger --> Spreadsheet 1000 (or more) questions --> filter (by category) --> If statement (only passes 100 questions per category (to save token usage)) --> separate AI agents for finding FAQ's per category --> finally merging everything together into one JSON output. AND, instead of running all agents simultaneously (and hit the TPM barrier) each agent will have a delay, so the agent before it is done analysing FAQ's within its category before the second initializes. Do you guys have another, maybe more simple solution to this?
IS THIS setup overkill or not? [Solved]
1 like • May 6
@Mirko Salzer yes I will do so 👍 Will do it in a couple of hours - thanks
3 likes • May 7
To all who might read this - my case got solved with a bunch of help! My automation platform = n8n. @Mirko Salzer was the guy to solve it! Thanks again! In the three pictures you can see how my workflow got better and better with the help of the community! What dawned on me was how much you can actually use a code node for! If you are finding yourself with a similar case to mine, feel free to reach out :) I have a much better understanding now! 🤓
1-10 of 11
Peter Kaad
4
49points to level up
@peter-kaad-5246
Curious about AI

Active 3d ago
Joined Apr 16, 2025
ENFP
Powered by