Waiting for engine...
Skip to main content

aiAgentAddTags

Add AI Agent tags to the AI Agent Registry, allowing for the management and organization of tags associated with AI Agents.

Description: This mutation adds the tags associated with AI Agents in the user's authenticated account, enabling better categorization and retrieval based on specified input criteria.

Input Parameters (AiAgentTagSyncInput):

  • relatedEntityRefId : AiEntityMutationReferenceIdInput - Related Entity Reference id.
  • relatedEntityType: AiRegistryEntityType - Entity Type based on Provider to which the tags should be associated.
  • tags: [AiAgentTagMutationInput] - Array of tags to be added with the AI Agent Registry.

Response (AiAgentTagSyncResponse):

  • tags: [AiAgentTagMutationOutput] - Array of tags added with the AI Agent Registry.

Example Request:

mutation {
addTags(input: {
addTag: [{
relatedEntityType: VERSION,
relatedEntityRefId: {
id: "fd005da0-0e8b-47dc-88b4-00000000af4d"
},
tags: [
{
key: "tag1"
},
{
key: "tag2"
}
]
}]
}) {
tags {
relatedEntityRefId
relatedEntityType
tags{
id
key
value
}
}
}
}

aiAgentAddTags(
input: AiAgentTagMutationInput
): AiAgentTagMutationOutput

Arguments

aiAgentAddTags.input ● AiAgentTagMutationInput input agent-control-tower

Type

AiAgentTagMutationOutput object agent-control-tower

On this Page