AI Assistant for Connectors

The AI Assistant for Connectors is an AI-powered assistant available in specific connectors. It helps you configure your integrations more quickly by generating configuration content based on the input and context you provide.

How to use the AI Assistant for Connectors

In supported connectors, you’ll see the Write with AI button. This means the connector has fields that can be configured with the help of AI.

Clicking the button opens a side panel next to the connector configuration form. In this panel, you can provide the following information:

  • Input: Insert or upload a JSON file representing the expected input.

  • Output: Insert or upload a JSON file representing the desired output.

  • Prompt: Provide additional context or instructions to guide the AI.

The AI will analyze the data and generate a response directly in the connector’s configuration form.

You can refine the AI’s response up to 5 times. After that, you’ll need to reset the AI to continue.

What are the supported connectors?

Example: Transformer (JOLT) V2

Let’s say you want to enrich customer data by adding a default birth date.

AI configuration

Input:

{
  "customer": {
    "name": "Customer Default",
    "ssn": "123-45-6789"
  }
}

Output:

{
  "customer": {
    "name": "Customer Default",
    "ssn": "123-45-6789",
    "birthDate": "01/01/1970"
  }
}

Prompt:

Ensure that the output JSON includes the birthDate field, even if it’s missing from the input.

AI-generated response

The AI might generate the following JOLT specification:

[
  {
    "operation": "default",
    "spec": {
      "customer": {
        "birthDate": "01/01/1970"
      }
    }
  }
]

AI responses are generative, which means the structure and wording may vary slightly across attempts.

Last updated

Was this helpful?