What This Workflow Does
You connect it to any Google Sheet that collects form responses. The system pulls every single row, groups all the answers by question automatically, and feeds the entire batch to DeepSeek AI. The AI analyzes the full dataset and produces a structured report covering overall sentiment, what customers are praising, what they are complaining about, specific recommendations for what to do next, and notable quotes worth paying attention to.
That report lands in your Telegram within seconds. If the sheet is empty or something breaks, you get an error alert in the same chat explaining exactly what happened.
How I Built It (5 Core Nodes)
Here is the core architecture:
1. Google Sheets Node
Connects directly to your spreadsheet. Pulls every row from the responses tab in one operation.
2. Aggregate Node
Combines all individual rows into a single batch so the AI can analyze everything together instead of one response at a time.
3. Format Feedback Code Node
This is the smart part. It reads whatever column headers your form has and groups all answers under each question automatically. If your form has 3 questions or 10 questions, it works the same way. It also adds the total response count.
4. DeepSeek LLM Chain
The AI engine. Takes the formatted feedback and writes a professional analysis report. Covers sentiment, highlights, complaints, actionable next steps, and standout quotes.
5. Telegram Delivery
Sends the finished report to your phone instantly. If the data was empty, a separate error alert fires instead so nothing fails silently.