For the complete documentation index, see llms.txt. This page is also available as Markdown.

Make.com

Integrate TensorX AI models with Make.com (formerly Integromat) to build powerful automated scenarios.


Overview

Make.com is a visual automation platform that connects thousands of apps. With TensorX's OpenAI-compatible API, you can add AI capabilities to any Make scenario.

What You Can Build

  • 📧 Email Automation - Auto-reply, summarize, and classify emails

  • 🔄 Data Enrichment - Enhance records with AI-generated insights

  • 📱 Social Media Bots - Generate and schedule content

  • 📊 Report Generation - Create summaries from data

  • 🛒 E-commerce - Product descriptions, review analysis

  • 📞 Customer Support - Intelligent ticket routing and responses


Prerequisites

  • Make.com account (Free tier works)

  • TensorX API key from app.tensorx.ai


Method 1: OpenAI Module with Custom Endpoint

Make's OpenAI module supports custom API endpoints, making TensorX integration simple.

Step 1: Create OpenAI Connection

  1. In Make, go to Connections

  2. Click Create a connection

  3. Search for OpenAI

  4. Configure the connection:

Field
Value

Connection Name

TensorX AI

API Key

Your TensorX API key

Organization ID

Leave empty

Step 2: Override the Base URL

When configuring an OpenAI module, expand Show advanced settings:

Setting
Value

Override Base URL

✅ Enabled

Base URL

https://api.tensorx.ai/v1

Step 3: Configure the Request

For a Create a Chat Completion action:

Field
Value

Model

deepseek/deepseek-chat-v3.1

Messages

Add your conversation

Max Tokens

1000 (adjust as needed)

Temperature

0.7


Method 2: HTTP Module (Full Control)

For complete flexibility, use Make's HTTP module.

Create Chat Completion

Add an HTTP > Make a request module:

Configuration:

Field
Value

URL

https://api.tensorx.ai/v1/chat/completions

Method

POST

Headers:

Key
Value

Authorization

Bearer YOUR_API_KEY

Content-Type

application/json

Body Type: Raw

Request Content:

Parse Response: ✅ Yes

Extract the AI Response

Access the response in subsequent modules:

Or use a JSON > Parse JSON module for structured access.


Method 3: Reusable HTTP Connection

Create a connection you can reuse across scenarios:

  1. Go to ConnectionsCreate a connection

  2. Select HTTPMake a request

  3. Choose API Key authentication:

Field
Value

API Key

Your TensorX API key

Add to

Header

Key Name

Authorization

Key Value Prefix

Bearer (with space)

  1. Save as TensorX API

Now use this connection in any HTTP module targeting https://api.tensorx.ai.


Example Scenarios

1. Email Auto-Responder

Automatically draft responses to incoming emails:

Prompt Template:

2. Shopify Product Description Generator

Generate SEO-optimized descriptions for new products:

Prompt:

3. Slack Support Bot

Respond to Slack messages with AI:

4. Lead Enrichment

Enrich CRM leads with AI-generated insights:

Prompt:

5. Content Calendar Automation

Generate a week's worth of social content:


Working with Responses

Parse the JSON Response

Make automatically parses JSON responses. Access fields like:

Field
Make Syntax

AI Response

{{X.choices[1].message.content}}

Model Used

{{X.model}}

Total Tokens

{{X.usage.total_tokens}}

Finish Reason

{{X.choices[1].finish_reason}}

Handle Multiple Messages

For multi-turn conversations, use an Array Aggregator to build the messages array:


Scenario Type
Recommended Model

General Text

deepseek/deepseek-chat-v3.1

Analysis/Reasoning

deepseek/deepseek-r1-0528

Code Generation

z-ai/glm-5.1

Long Documents

meta-llama/llama-4-maverick

Quick Responses

meta-llama/llama-3.3-70b-instruct


Error Handling

Add Error Handlers

Right-click any module → Add error handler

Recommended handlers:

  • Resume - Continue with default value

  • Rollback - Undo changes and retry

  • Break - Stop and notify

Common Errors

Error
Solution

401 Unauthorized

Check API key is correct

404 Not Found

Verify model name exactly

429 Rate Limited

Add delay between operations

500 Server Error

Retry with exponential backoff

Rate Limit Handling

Use the Sleep module between API calls:

For batch processing, use Iterator with built-in delay.


Best Practices

1. Use Variables for API Key

Store your API key in a scenario variable:

  • Go to Scenario settingsVariables

  • Add tensorx_api_key

  • Reference as {{tensorx_api_key}}

2. Optimize Token Usage

  • Set appropriate max_tokens limits

  • Use concise system prompts

  • Summarize long inputs before processing

3. Structure Your Prompts

4. Monitor Usage

Add a Webhook or Google Sheets module to log:

  • Token usage per request

  • Response times

  • Error rates


Pricing Considerations

TensorX charges per token. Optimize costs by:

  • Using smaller context when possible

  • Caching repeated queries

  • Choosing appropriate models for each task

  • Setting reasonable max_tokens limits


See Also

Last updated

Was this helpful?