Enable Llm Integration
enable Llm Integration.
An integration connects an external provider to this module. Configure the provider and its secrets in the dashboard; the API lets you list, create or update, enable, disable, set a default, and test integrations. This method enables the module for your project.
This method is on the Hub surface (norbix.hub.ai) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.ai.enableLlmIntegration({
id: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Ai.EnableLlmIntegrationAsync(new EnableLlmIntegrationRequest
{
Id = "int_4kX9mQvR2tYw7ZbC1dFgHj",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.ai.enable_llm_integration(
id="int_4kX9mQvR2tYw7ZbC1dFgHj",
)In the dashboard
Manage this visually in Norbix Cloud — see AI Integrations → Integrations.
API reference
Full request and response for this endpoint: Enable Llm Integration.
Last updated