aiAgentLlm
Retrieve a specific AI Agent LLM by its ID.
Description: This query returns a single AI Agent LLM based on the provided ID.
Input Parameters:
id: ID (required) - The unique identifier of the LLM to retrieve.
Response:
- Returns an AiAgentLlm object containing the LLM details.
Example Request:
query {
aiAgentLlm(id: "Llm-guid") {
id
version
name
description
externalId
agentVersions {
id
name
version
}
}
}
aiAgentLlm(
id: ID!
): AiAgentLlm
Arguments
aiAgentLlm.id ● ID! non-null scalar miscellaneous
Type
AiAgentLlm object agent-control-tower
Was this topic helpful?