Waiting for engine...
Skip to main content

aiAgentLlmDisassociation

Disassociate agent versions from an AI Agent LLM in the AI Agent Registry.

Description: This mutation removes associations between an AI Agent LLM and agent versions. The LLM itself is never deleted, only associations are removed.

Input Parameters (AiAgentLlmDisassociationInput):

  • id: ID! - Required. Unique identifier of the AI agent LLM.
  • agentVersionIds: [ID!]! - Required. One or more agent version IDs from which associations are to be removed. If empty array is provided, all associations will be deleted.

Response:

  • Returns a boolean value indicating the success status of the disassociation operation.

Example Request:

# Remove specific associations
mutation {
aiAgentLlmDisassociation(input: {
id: "llm-123"
agentVersionIds: ["agent-version-456", "agent-version-789"]
})
}
# Remove all associations (empty array) but keep the LLM
mutation {
aiAgentLlmDisassociation(input: {
id: "llm-123"
agentVersionIds: []
})
}

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.

On this Page