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

Get Llm Integrations

get Llm Integrations.

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 returns the llm integrations available in your project.

This method is on the Hub surface (norbix.hub.ai) β€” call it from admin tooling or IaC.

These examples assume the SDK is installed and your credentials are set as environment variables β€” each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();

const result = await norbix.hub.ai.getLlmIntegrations({
  startingAfter: 'cursor_next',
  endingBefore: 'cursor_prev',
  pageSize: 20,
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Ai.GetLlmIntegrationsAsync(new GetLlmIntegrations
{
    StartingAfter = "cursor_next",
    EndingBefore = "cursor_prev",
    PageSize = 20,
});
from norbix_python import NorbixHub

norbix = NorbixHub()

result = norbix.ai.get_llm_integrations(
    startingAfter="cursor_next",
    endingBefore="cursor_prev",
    pageSize=20,
)

In the dashboard

Manage this visually in Norbix Cloud β€” see AI Integrations β†’ Integrations.

API reference

Full request and response for this endpoint: Get Llm Integrations.

Last updated