Prerequisites
- Access to a Veratrace instance
- Appropriate permissions to manage agents
Create an Agent
Navigate to/agents/create to create a new agent.
Source: Feature Inventory - UI Flows (Agents)
Agent Configuration
Basic Information
- Name - Agent name
- Type - AI or HUMAN
- Active - Whether the agent is active
AI Agent Configuration
For AI agents, configure:- Model - AI model identifier (e.g., “gpt-4”, “gpt-3.5-turbo”, “claude-3”)
- Capabilities - AI-specific capabilities
Human Agent Configuration
For human agents, configure:- Capabilities - Human-specific capabilities
Priority
Set agent priority level:- high - High priority
- medium - Medium priority
- low - Low priority
Create via API
API:POST /instances/:instanceId/agents
Request body:
Update an Agent
Navigate to/agents/:agentId/edit or use the API.
API: PUT /instances/:instanceId/agents/:agentId
Source: Feature Inventory - API Surface (Agents API)
List Agents
View all agents at/agents or use the API.
API: GET /instances/:instanceId/agents
Query parameters:
type- Filter by type (AI, HUMAN)active- Filter by active statusname- Search by namepage,size,sort- Pagination and sorting
Delete an Agent
API:DELETE /instances/:instanceId/agents/:agentId
Source: Feature Inventory - API Surface (Agents API)
Related
- Agent Concept - Understand agents
- Agents API - Complete API reference