Waiting for engine...
Skip to main content

aiAgentLlms

Retrieve a list of AI Agent Llms available in the Registry account.

Description: This query returns a paginated list of AI Agent Llms.

Input Parameters (AiAgentLlmsQueryInput):

  • startIndex: Int - Zero-based page index for pagination (must not be negative). Default is 0
  • endIndex: Int - Number of items per page (must be greater than 0). Default is 50
  • providerAccountId: ID - Provider account ID to filter Llms. Only Llms associated with the specified provider account will be returned.

Response (AiAgentLlmsQueryResponse):

  • totalResults: Long - Total number of LLMs available
  • currentPageSize: Int - Number of LLMs in the current page
  • llms: [AiAgentLlm!] - Array of LLMs

Example Request:

query {
aiAgentLlms(input: {
startIndex: 0,
endIndex: 20,
providerAccountId: "provider-account-guid"
}) {
totalResults
currentPageSize
llms {
id
version
name
description
externalId
agentVersions {
id
name
version
}
}
}
}

aiAgentLlms(
input: AiAgentLlmsQueryInput
): AiAgentLlmsQueryResponse

Arguments

aiAgentLlms.input ● AiAgentLlmsQueryInput input agent-control-tower

Type

AiAgentLlmsQueryResponse object agent-control-tower

On this Page