Waiting for engine...
Skip to main content

aiAgentLlmDelete

Delete an AI Agent LLM from the AI Agent Registry.

Description: This mutation permanently removes an AI Agent LLM from the AI Agent Registry only if no associations exist.

Parameters:

  • id: ID! - Contains LLM ID.

Returns:

  • Boolean - true if deletion was successful, false otherwise.

Example Usage:

mutation {
aiAgentLlmDelete(id: "llm-123")
}

Error Handling:

  • Validates LLM exists and belongs to provider account.
  • Returns error if LLM has associations.
  • Returns descriptive error messages for invalid operations.
aiAgentLlmDelete(
id: ID!
): Boolean!

Arguments

aiAgentLlmDelete.id ● ID! non-null scalar miscellaneous

Type

Boolean scalar miscellaneous

The Boolean scalar type represents true or false.

On this Page