Block 1 - Tally Trigger
- Type / Role
- n8n-nodes-tallyforms.tallyTrigger - tallyTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Who is this for? This workflow is for Product Managers, Indie Hackers, and Customer Success teams who collect feature requests but struggle to notify specific users when those features actually shi...
n8n-nodes-tallyforms.tallytrigger, n8n-nodes-base.set, @n8n/n8n-nodes-langchain.vectorstoresupabase, @n8n/n8n-nodes-langchain.embeddingsopenai, @n8n/n8n-nodes-langchain.documentdefaultdataloader, n8n-nodes-base.stickynote, n8n-nodes-base.manualtrigger, n8n-nodes-base.rssfeedreadtrigger
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Ehsan.
Original n8n.io sourceThis workflow is for Product Managers, Indie Hackers, and Customer Success teams who collect feature requests but struggle to notify specific users when those features actually ship. It helps you turn old feedback into customer loyalty and potential upsells.
This workflow creates a "Semantic Memory" of user requests. Instead of relying on exact keyword tags, it uses Vector Embeddings to understand the meaning of a request.
For example, if a user asks for "Night theme," and months later you release "Dark Mode," this workflow understands they are the same thing, finds that user, and drafts a personal email to them.
vector extension enabled.HTTP Request node with your specific Supabase Project URL.Open your Supabase SQL Editor and paste this script to set up the tables and search function:
-- 1. Enable Vector Extension
create extension if not exists vector;
-- 2. Create Request Table (Smart Columns)
create table feature_requests (
id bigint generated by default as identity primary key,
content text,
metadata jsonb,
embedding vector(768), -- 768 for Nomic, 1536 for OpenAI
created_at timestamp with time zone default timezone('utc'::text, now()),
user_email text generated always as (metadata->>'user_email') stored,
user_name text generated always as (metadata->>'user_name') stored
);
-- 3. Create Search Function
create or replace function match_feature_requests (
query_embedding vector(768),
match_threshold float,
match_count int
)
returns table (
id bigint,
user_email text,
user_name text,
content text,
similarity float
)
language plpgsql
as $$
begin
return query
select
feature_requests.id,
feature_requests.user_email,
feature_requests.user_name,
feature_requests.content,
1 - (feature_requests.embedding <=> query_embedding) as similarity
from feature_requests
where 1 - (feature_requests.embedding <=> query_embedding) > match_threshold
order by feature_requests.embedding <=> query_embedding
limit match_count;
end;
$$;
⚠️ Dimension Warning: This SQL is set up for 768 dimensions (compatible with the local nomic-embed-text model included in the template).
If you decide to switch the Embeddings node to use OpenAI's text-embedding-3-small, you must change all instances of 768 to 1536 in the SQL script above before running it.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
Showing the first 24 of 27 workflow blocks. Download the JSON for the full node graph.
| Workflow | Notify users when features ship with Semantic Search from Tally to Gmail |
|---|---|
| Complexity | advanced |
| Nodes | 27 |
| Categories | CRM, AI RAG |
| Author | Ehsan |
| Published | 30 Nov 2025 |
Use the JSON export at /data/workflows/11369/11369.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Who is this for? This workflow is for Product Managers, Indie Hackers, and Customer Success teams who collect feature requests but struggle to notify specific users when those features actually shi...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your CRM, AI RAG use case.