aiAgentLlmDisassociation
Disassociate agent DRAFT versions from an AI Agent LLM with DRAFT version in the AI Agent Registry.
Description: This mutation removes associations between an AI Agent LLM and agents. The LLM itself is never deleted, only associations are removed.
Input Parameters (AiAgentLlmDisassociationInput):
id: ID! - Required. LLM GUID. Must be of type LLM with a DRAFT version.agentIds: [ID!]! - Required. List of AI Agent IDs from which LLM associations are to be removed; disassociated from the specified agents DRAFT versions.
Response:
- Returns a boolean value indicating the success status of the disassociation operation.
Example Request:
mutation {
aiAgentLlmDisassociation(input: {
id: "llm-123"
agentIds: ["agent-guid-1", "agent-guid-2"]
})
}
aiAgentLlmDisassociation(
input: AiAgentLlmDisassociationInput!
): Boolean!
Arguments
aiAgentLlmDisassociation.input ● AiAgentLlmDisassociationInput! non-null input agent-control-tower
Type
Boolean scalar miscellaneous
The Boolean scalar type represents true or false.
Was this topic helpful?