Skip to main content

Triage HVAC issues and AI diagnosis with Gemini Vision, GoHighLevel and WhatsApp

Workflow preview

Workflow preview
100%
Triage HVAC issues and AI diagnosis with Gemini Vision, GoHighLevel and WhatsApp preview
Open on n8n.io

1. Workflow Overview

Workflow explanation: Watch on YouTube Automated HVAC triage & AI diagnosis with Gemini Vision, GoHighLevel & WhatsApp Prerequisites & Setup Before ru...

Best for

  • Ticket Management automation workflows
  • AI Summarization automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.formtrigger, n8n-nodes-base.extractfromfile, n8n-nodes-base.code, n8n-nodes-base.highlevel, n8n-nodes-base.httprequest, n8n-nodes-base.whatsapp

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by iamvaar.

Original n8n.io source

1.1 Workflow description

Title
Triage HVAC issues and AI diagnosis with Gemini Vision, GoHighLevel and WhatsApp
Workflow name
Triage HVAC issues and AI diagnosis with Gemini Vision, GoHighLevel and WhatsApp
Workflow explanation: Watch on YouTube

Automated HVAC triage & AI diagnosis with Gemini Vision, GoHighLevel & WhatsApp

Prerequisites & Setup

Before running or deploying this workflow, you need to configure the following services and credentials:

  • GoHighLevel Custom Fields: You must create the corresponding custom fields in your GoHighLevel account to capture the AI's output (e.g., Property Address, Issue, Brand, Model Number, Serial Number, Manufactured Date, Refrigerant Type, Probable Issue, Repair Action, Estimated Cost Level, Repair Score, and AI Recommendation).
  • GoHighLevel Developer App (OAuth2): * Create a free GoHighLevel Developer App.
  • Add the following scopes: contacts.readonly, contacts.write, locations.readonly, locations/customFields.readonly, and locations/customFields.write (Note: these custom field scopes replace the standard opportunities scopes).
  • Generate your Client ID and Secret within the Developer App.
  • Enter these details into your n8n GoHighLevel OAuth2 credentials.
  • Copy the OAuth Redirect URL from n8n, paste it into the App's OAuth redirection settings, and complete the authentication process.
  • WhatsApp API Credentials: You will need your WhatsApp Access Token and WhatsApp Business Account ID.
  • Gemini API Key: A valid Google Gemini API key to power the AI vision and diagnostic analysis.

Node-by-Node Explanation

1. When Form Submitted (Trigger) This is the starting point of the workflow. It uses n8n's native form trigger to collect a service request. It captures the customer's Name, Email, Phone Number, Property Address, a text description of the issue, and crucially, a file upload of the HVAC unit's nameplate or data sticker.

2. Extract File Content This node takes the image uploaded in the previous form step and converts/extracts the file content. By assigning the binary data to the image property, it makes the picture readable and ready to be sent to external APIs for analysis.

3. Post to Gemini API This HTTP Request node acts as the brain of the operation. It sends the reported issue and the extracted image to the gemini-3.1-flash-lite model. The prompt instructs the AI to act as an expert HVAC diagnostic assistant to:

  • Read the nameplate to extract the Brand, Model, Serial Number, Date, and Refrigerant Type.
  • Analyze the text issue against the equipment data to generate a probable issue, repair action, and an estimated cost level.
  • Calculate a "Repair Score" (0 to 100) to recommend whether the unit is worth repairing or replacing.
  • Format the entire response strictly as a JSON object.

4. Parse API Response Because AI models can sometimes wrap JSON in markdown blocks or conversational text, this custom JavaScript Code node uses regex to locate the exact JSON block inside the Gemini output. It safely parses it and outputs clean, structured JSON data for the rest of the workflow to use.

5. Create Lead in GoHighLevel This node connects to your CRM. It maps the original client contact details (Name, Email, Phone) alongside all of the deeply detailed AI insights (Property Address, HVAC Brand, Model, Serial, AI Repair Score, Recommended Action) directly into the GoHighLevel custom fields you set up in the prerequisites.

6. Prepare Binary Image Since the workflow's primary data stream has been replaced by the parsed JSON text, this Code node "teleports" the original binary image data from the Extract File Content node and stitches it together with the current JSON data. This ensures the WhatsApp node has access to both the text details and the photo.

7. Send WhatsApp to Technician The final step dispatches a WhatsApp message directly to the lead technician. It sends the original photo of the HVAC nameplate accompanied by a neatly formatted caption. The caption includes the client's name, property address, the reported issue, the AI's probable diagnosis and cost estimation, and instructions on next steps.

1.2 Logical Blocks

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.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - When Form Submitted

Type / Role
n8n-nodes-base.formTrigger - formTrigger
Config choices
Version 2.5

Block 6 - Extract File Content

Type / Role
n8n-nodes-base.extractFromFile - extractFromFile
Config choices
Version 1.1

Block 7 - Parse API Response

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Prepare Binary Image

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Create Lead in GoHighLevel

Type / Role
n8n-nodes-base.highLevel - highLevel
Config choices
Version 2

Block 10 - Post to Gemini API

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.4

Block 11 - Send WhatsApp to Technician

Type / Role
n8n-nodes-base.whatsApp - whatsApp
Config choices
Version 1.1

3. Summary Table

Workflow Triage HVAC issues and AI diagnosis with Gemini Vision, GoHighLevel and WhatsApp
Complexity intermediate
Nodes 11
Categories Ticket Management, AI Summarization
Author iamvaar
Published 16 Apr 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/15104/15104.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

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.

Frequently asked questions

What does Triage HVAC issues and AI diagnosis with Gemini Vision, GoHighLevel and WhatsApp do?

Workflow explanation: Watch on YouTube Automated HVAC triage & AI diagnosis with Gemini Vision, GoHighLevel & WhatsApp Prerequisites & Setup Before ru...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

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 Ticket Management, AI Summarization use case.