Waiting for engine...
Skip to main content

Enabling AI Transformation

To use AI features in your integrations component, add the AI configuration parameters in the boomi.config.js file and initialize the plugin. This activates the Ask AI to generate transformation feature in the Transformation Editor integration user interface, which remains off by default.

AI

To enable the AI Transformation:

  1. In the boomi.config.js file, add the following AI Boomi plugin configuration.

    AI configuration
     ai: {
    enabled: true,
    model: 'gpt-4o-2024-08-06',
    apiKey: import.meta.env.VITE_OPENAI_API_KEY,
    }
  2. Reinitialize the plugin.

    Your complete boomi.config.js file should now look like this:

    boomi.config.js
    // boomi.config.js
    export const boomiConfig = {
    theme: {
    allowThemes: true,
    defaultTheme: 'dark',
    },
    ai: {
    enabled: true,
    model: 'gpt-4o-2024-08-06',
    apiKey: import.meta.env.VITE_OPENAI_API_KEY,
    },

The enabled: true line activates the AI feature, while model and apiKey specify the large language model and authentication key to use.

Disabling AI Transformation

To disable the AI feature, set enabled: false in the boomi.config.js file.

AI configuration
   ai: {
enabled: true,
model: 'gpt-4o-2024-08-06',
apiKey: import.meta.env.VITE_OPENAI_API_KEY,
},

This ai block turns off the AI feature in the integrations component.

On this Page