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 0endIndex: Int - Number of items per page (must be greater than 0). Default is 50providerAccountId: 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 availablecurrentPageSize: Int - Number of LLMs in the current pagellms: [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
Was this topic helpful?