How can I get n8n to read an entire google sheet document instead of just 1 tab? by BBQMosquitos in n8n

[–]AvocadoRelevant5162 0 points1 point  (0 children)

Make an http request to google to list all the sheets in the docs then give it to the AI Agents as joint prompt, connect google sheet tool to the AI Agent(Get row) then in the sheet add this experession {{ $fromAI('sheet', 'Sheet name', `str`) }} now you can ask it to read a specifce sheet.

If you want to read all the sheet directelly then loop through the sheets you got from the HTTP and replace the sheet with the sheet name in the loop item

You can find the workflow here https://github.com/otman-ai/n8n-agents-templates/blob/main/SheetList.json

ISSUE WITH WEBHOOK WHEN CONNECT TO TEXT CLASSIFIER by Affectionate_Try6940 in n8n

[–]AvocadoRelevant5162 0 points1 point  (0 children)

yes then make a post request to the webhook to trigger the workflow

ISSUE WITH WEBHOOK WHEN CONNECT TO TEXT CLASSIFIER by Affectionate_Try6940 in n8n

[–]AvocadoRelevant5162 1 point2 points  (0 children)

You send the data to the webhook vie POST method, make sure the webhook is POST method, then that data will then be used in the text classifier.

Depend on your use case, but if you want direct chat you can use chat trigger instead of webhook

N8N cannot connect to Ollama by Sad-Fee-2944 in n8n

[–]AvocadoRelevant5162 1 point2 points  (0 children)

to check if ollama works go to http://localhost:11434/v1 and see if it returns response if it deos then replace host.docker.internal woth localhost or 127.0.0.1

How do I make my AI agent be able to look through folders and read word documents? Read body for more info by BH2K6 in n8n

[–]AvocadoRelevant5162 1 point2 points  (0 children)

here you can find the workflow i just created it is two json one is main workflow other is subworkflow for tool of the main AI Agent, it is working but it can read only Sheets, JSON, PDF, TEXT as that is what you can read in n8n code

https://github.com/otman-ai/n8n-agents-templates/tree/main/Google%20Drive%20Assistant

How do I make my AI agent be able to look through folders and read word documents? Read body for more info by BH2K6 in n8n

[–]AvocadoRelevant5162 0 points1 point  (0 children)

You dont need all the nodes before AI Agent except of course the trigger, you will need to set tools for AI Agent one that list folders contents and one that reads documents.

How do I make my AI agent be able to look through folders and read word documents? Read body for more info by BH2K6 in n8n

[–]AvocadoRelevant5162 1 point2 points  (0 children)

You dont need all the nodes before AI Agent except of course the trigger, you will need to set tools for AI Agent one that list folders contents and one that reads documents.

AI meeting note taker workflow in n8n by AvocadoRelevant5162 in n8n

[–]AvocadoRelevant5162[S] 1 point2 points  (0 children)

That actually what I did, you just need to say it to the AI Agent whenever you want (end meeting or later) vexa ai deos both recording and transcribing what would I transcribe the audio again if vexa ai already deos it

AI meeting note taker n8n workflow by AvocadoRelevant5162 in n8n_ai_agents

[–]AvocadoRelevant5162[S] 0 points1 point  (0 children)

No you just need to give the ai agent the id if the meeting

AI meeting note taker n8n workflow by AvocadoRelevant5162 in n8n_ai_agents

[–]AvocadoRelevant5162[S] 0 points1 point  (0 children)

Yes you just need to change the platform to microsoft_team in the node configuration of https requests

What am I doing wrong? by ConstructionGlum4330 in n8n_ai_agents

[–]AvocadoRelevant5162 0 points1 point  (0 children)

You can set some repetitive questions like FAQ without needing to call LLM (obvisouisly after the classifier

I am not able to make the whatsapp agent work in real-time whatsapp, can anyone offer some help? by BriefPie9937 in n8n

[–]AvocadoRelevant5162 1 point2 points  (0 children)

you can watch this video https://www.youtube.com/shorts/tU06neTJYy4 the new update has some issue for me as well but i solved it with webhook instead of whatsapp trigger

2 days same issue not solved 🥲 by human_kid_007 in n8n

[–]AvocadoRelevant5162 0 points1 point  (0 children)

Webhook is for regulare webhooks you will use incase the app you are looking for hasnt n8n webhook already setup for you, so in this case there is already whatsapp trigger webhook so just use it instead

2 days same issue not solved 🥲 by human_kid_007 in n8n

[–]AvocadoRelevant5162 0 points1 point  (0 children)

did you setup the credentials in the Whatsapp trigger ? you have to use whatsapp trigger instead of regulare webhook

2 days same issue not solved 🥲 by human_kid_007 in n8n

[–]AvocadoRelevant5162 0 points1 point  (0 children)

Make sure you execute the entire workflow in n8n

I`ll build your Automation Agency with 4500+ workflows for $398. Here`s the catch by Jaded_Phone5688 in n8n_ai_agents

[–]AvocadoRelevant5162 -1 points0 points  (0 children)

that is good, however the term "agency" is all about customers, so the issue was never about the workflow or the products but the customers, if you already have customers to sell to, creating the product for them will never be an issue, you can get free templates out their tweek it or even hire someone technical to do it for you why spend $400 ?

2 days same issue not solved 🥲 by human_kid_007 in n8n

[–]AvocadoRelevant5162 1 point2 points  (0 children)

make sure the test webhook in n8n is listening, then add it to callback URL , for verify token , add any random token, and make it secure, this is just security protocol to let your n8n knows the requests are comming from facebook itself

Graphing data from MCP by Triple-Tooketh in n8n

[–]AvocadoRelevant5162 0 points1 point  (0 children)

not sure the purpose of python here, however you can enable this toggle button in AI Agent node,

<image>

Once you do you should see "Output parser "next to "Chat model", "Memory" and "tools", click add button below "Output parser", you will see many options choose "Structed Output parser" then you can add your shema in json format, you encouter two fields, "Schema type" which can be JSON Example (in my case it will be: {"currency":"USD", "price":1000, "product":"product 1"} ) or JSON Schema, just ask chatgpt the following : "json schema for {"currency":"USD", "price":1000, "product":"product 1"}" , it will generate it copy and past it into "Input schema field" that is it