AI Model Comparison via Nvidia API Parallel Execution - n8n Workflow

Use this powerful n8n workflow to compare responses from four major AI models (Qwen, DeepSeek, Seed-OSS, Nemotron) simultaneously using the Nvidia API. Ideal for fast ensemble intelligence.

Workflow Preview

Ready to automate?

Download this n8n workflow template and start using it instantly.

Who is this best for?

AI Engineers and Researchers who require rapid, low-latency model comparison.
Developers building multi-model ensemble systems or AI fallbacks.
Users looking for advanced examples of parallel execution and flow control within an n8n node environment.
Anyone seeking high-speed, resilient n8n templates for external AI APIs.

Overview

This advanced n8n workflow addresses the challenge of slow, sequential queries to multiple high-latency AI endpoints. By leveraging highly efficient parallel processing, this n8n automation simultaneously queries four distinct language models—Qwen3-next, Seed-OSS, DeepSeek-r1, and Nemotron-Nano—all powered through the official Nvidia API. This setup is crucial for ensemble intelligence, real-time A/B testing, or creating production systems with immediate AI fallbacks, significantly reducing latency compared to traditional sequential methods. This robust n8n workflow demonstrates essential core logic flow control techniques.

How it Works

This high-performance n8n workflow executes the following steps:


  1. Trigger: The n8n workflow starts with the Webhook Trigger, waiting for a POST request that contains the user's query data (e.g., under the key 'Insert your Query'). This is the starting n8n trigger for the entire process.

  2. Parallel Split: The flow passes the request to the AI Model Router (an n8n node configured to split the execution path), which immediately initiates four parallel execution branches.

  3. Query Execution: Each parallel branch utilizes an HTTP Request n8n node to query a specific model endpoint on the Nvidia API (/v1/chat/completions). The models targeted are Qwen3, Seed-OSS, DeepSeek-r1, and Nemotron-Nano. Each n8n node dynamically inserts the user's query into its respective JSON payload.

  4. Aggregation: All four responses are routed to the Merge AI Model n8n node. This node aggregates the asynchronous results from all parallel branches, ensuring data consistency even if one request takes slightly longer.

  5. Formatting: The aggregated data proceeds to the Format Response n8n node, which standardizes the structure of the output by selecting specific fields from the combined response.

  6. Response: Finally, the Send Aggregated AI Model Responses n8n node sends the comprehensive, combined results back to the original caller via the webhook response.

Installation Guide


  1. Import the n8n Workflow: Copy the provided n8n workflow JSON and paste it into your n8n instance using the "Import Workflow" function.

  2. Nvidia API Key: Obtain a valid API key from the Nvidia developer platform.

  3. Credential Setup: Each of the four HTTP Request n8n node instances requires an HTTP Bearer Auth credential. You must configure this credential for all four query nodes, ensuring your Nvidia API token is used as the bearer token for authorization.

  4. Configuration Check: Verify that the JSON body within each query n8n node correctly references the incoming user query using an expression like {{ $json['Insert your Query'] }}.

  5. Activate and Test: Set the n8n workflow to active and test by sending a POST request to the unique Webhook URL provided by the initial n8n trigger node.

Node Details

Webhook Trigger

Function: Acts as the starting n8n trigger, initiating the n8n workflow upon receiving an external POST request.
Key Configuration: Method set to POST, allowing external systems to easily submit queries.

AI Model Router (Switch)

Function: Although configured as a Switch n8n node, its connections effectively ensure that all downstream HTTP Request nodes fire simultaneously, enabling parallel query processing.

Query Qwen3-next-80b-a3b-thinking (HTTP Request)

Function: Queries the Qwen AI model via the Nvidia API.
Key Configuration: Uses the model qwen/qwen3-next-80b-a3b-thinking. Authentication is set via Generic Credential Type (Bearer Token).

Query Bytedance/seed-oss-36b-instruct (HTTP Request)

Function: Queries the Seed-OSS AI model via the Nvidia API, focusing on higher temperature (1.1) for varied responses.

Query DeepSeekv31 (HTTP Request)

Function: Queries the DeepSeek-r1 model, utilizing specific temperature (0.6) and topp (0.7) parameters for a focused response.

Query Nvidia-nemotron-nano-9b-v2 (HTTP Request)

Function: Queries Nvidia’s native Nemotron-Nano model, configured for streaming and thinking tokens.

Merge AI Model (Merge)

Function: A crucial core logic flow control n8n node that waits for and aggregates the responses from the four parallel branches into a single data item stream.
Key Configuration: Set to handle 4 inputs, collecting all model responses.

Format Response (Set)

Function: Structures and standardizes the merged data, preparing it for the final output.
Key Configuration: Creates a field named choices[0].message.content using data extracted from the merged input.

Send Aggregated AI Model Responses (Respond To Webhook)


  • Function: Sends the final JSON containing all model results back to the calling system, concluding the n8n workflow execution.

Related n8n Workflows

Free

Nodes: 7 Nodes
Updated: December 26 2025
View all
Created by
Cheng Siong Chin
Cheng Siong Chin

Prof. Cheng Siong CHIN serves as Chair Professor in Intelligent Systems Modelling and Simulation in Newcastle University, Singapore. His academic credentials include an M.Sc. in Advanced Control and Systems Engineering from The University of Manchester and a Ph.D. in Robotics from Nanyang Technological University.

Featured*