Block 1 - Google Gemini Chat Model
- Type / Role
- @n8n/n8n-nodes-langchain.lmChatGoogleGemini - lmChatGoogleGemini
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Who this is for This workflow is designed for teams that collect feedback or survey responses via Jotform and want to automatically: Analyze sentiment (positive, neutral, negative) of each response...
@n8n/n8n-nodes-langchain.lmchatgooglegemini, @n8n/n8n-nodes-langchain.chainllm, @n8n/n8n-nodes-langchain.outputparserstructured, n8n-nodes-base.googlesheets, n8n-nodes-base.stickynote, n8n-nodes-base.code, n8n-nodes-base.jotformtrigger, n8n-nodes-base.merge
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Ranjan Dailata.
Original n8n.io sourceThis workflow is designed for teams that collect feedback or survey responses via Jotform and want to automatically:
Use Cases
This n8n automation connects Jotform, Google Gemini, and Google Sheets to turn raw responses into structured insights with sentiment, topics, and keywords.
Jotform → Webhook → Gemini (Topics + Keywords) → Gemini (Sentiment) → Output Parser → Merge → Google Sheets
$json.body.pretty) such as name, email, and response text.Goal: Identify the main themes and important keywords from responses.
{
"topics": [
{
"topic": "Product Features",
"summary": "Users request more automation templates.",
"keywords": ["AI templates", "automation", "workflow"],
"sentiment": "positive",
"importance_score": 0.87
}
],
"global_keywords": ["AI automation", "developer tools"],
"insights": ["Developers desire more creative, ready-to-use AI templates."],
"generated_at": "2025-10-08T10:30:00Z"
}
Goal: Evaluate overall emotional tone and priority.
{
"customer_name": "Ranjan Dailata",
"customer_email": "[email protected]",
"feedback_text": "Please build more interesting AI automation templates.",
"sentiment": "positive",
"confidence_score": 0.92,
"key_phrases": ["AI automation templates", "developer enablement"],
"summary": "Customer requests more AI automation templates to boost developer productivity.",
"alert_priority": "medium",
"timestamp": "2025-10-08T10:30:00Z"
}
feedback_analysis → Sentiment + Summary JSON topics_keywords → Extracted Topics + Keywords JSONAdd Sticky Notes or a logo image node in your workflow to:

{
"feedback_analysis": {
"customer_name": "Ranjan Dailata",
"sentiment": "positive",
"summary": "User appreciates current templates and suggests building more advanced AI automations.",
"key_phrases": ["AI automation", "developer templates"]
},
"topics_keywords": {
"topics": [
{
"topic": "AI Template Expansion",
"keywords": ["AI automation", "workflow templates"],
"sentiment": "positive",
"importance_score": 0.9
}
],
"global_keywords": ["automation", "AI development"]
}
}
If you are new to Jotform, Please do signup using Jotform Signup
For the purpose of demonstation, we are considering the Jotforms Prebuilt New Customer Registration Form as a example. However, you are free to consider for any of the form submissions.
If using local n8n, set up ngrok:
ngrok http 5678
Use the generated public URL as your Webhook URL base for Jotform integration.
/webhook-test/f3c34cda-d603-4923-883b-500576200322).
You can copy the URL by double clicking on the Webhook node. Make sure to replace the base url with the above Step 0, if you are running the workflow from your local machine.models/gemini-2.0-flash-exp.JotformFeedbackInsights with columns:feedback_analysis (string) topics_keywords (string)You can modify the topic extraction prompt to highlight specific themes:
You are a research analyst. Extract main topics, keywords, and actionable insights from this feedback: {{ $json.body }}
Add more fields like:
{
"suggested_blog_title": "",
"tone": "",
"recommendations": []
}
Then update your DataTable or Sheets schema accordingly.
This workflow turns raw Jotform submissions into actionable insights using Google Gemini AI — extracting topics, keywords, and sentiment while automatically logging everything to Google Sheets.
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.
| Workflow | Automatic Topic & Sentiment Extraction from Jotform Responses with Google Gemini |
|---|---|
| Complexity | intermediate |
| Nodes | 14 |
| Categories | Market Research, AI Summarization |
| Author | Ranjan Dailata |
| Published | 07 Oct 2025 |
Use the JSON export at /data/workflows/9350/9350.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 this is for This workflow is designed for teams that collect feedback or survey responses via Jotform and want to automatically: Analyze sentiment (positive, neutral, negative) of each response...
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 Market Research, AI Summarization use case.