aiAgentListingFilterValues
The aiAgentListingFilterValues query is designed retrieve all providerAccounts,Tags,LLM's,trustLevels and provider types
Input Parameters (AiAgentsListingQueryInput):
providerAccountId: ID - Optional. AI Agent Provider account to filter the results.
Response (AiAgentListingAllFiltersResponse):
provider: [AiAgentProviderType] - Array of agent provider types.account: [AiAgentFilterLookup] - Array of agent provider accounts with name and guid.model: [String] - Array of agent model names.tag: [AiAgentFilterLookup] - Array of agent tags with name and guid.trustLevel: [AiAgentRegistryTrustLevel] - Array of agent trust levels.
Example Request:
query {
aiAgentListingFilterValues (input: {
providerId:"e2d4d7cf-79d9-4f90-9be8-b8dd4e9e9a25"
}) {
provider
model
trustLevel
account {
name
guid
}
tag {
name
guid
}
}
}
aiAgentListingFilterValues(
input: AiAgentListingFilterQueryInput
): AiAgentListingAllFiltersResponse
Arguments
aiAgentListingFilterValues.input ● AiAgentListingFilterQueryInput input agent-control-tower
Type
AiAgentListingAllFiltersResponse object agent-control-tower
Was this topic helpful?