Agent Management
Register, monitor, and manage your AI agents. View activity, configure policies, and track governance metrics per agent.
Overview
The Agent Management module provides centralized control over all your AI agents. Each agent has its own governance profile, including policies, budgets, and activity logs.
Real-time Status
Monitor agent activity
Policy Assignment
Configure per-agent policies
Memory Tracking
View memory trust scores
Agent List
The agent list displays all registered agents with key information:
| Column | Description |
|---|---|
| Name | Agent display name and ID |
| Status | Active, Idle, or Disabled |
| Model | Primary LLM model used |
| Trust Score | Memory integrity trust score |
| Last Active | Timestamp of last activity |
Register an Agent
Agents can be registered via the Admin Console UI or programmatically. Agent management is a cloud operation, so it runs against the Tork API. From Python, call the REST API with a Bearer token — the cloud SDK @torknetwork/sdk is npm-only, and the on-device package tork-governance on PyPI governs locally and does not manage agents.
import os
import requests
# There is no Python cloud SDK — use the REST API.
TORK_API_KEY = os.environ["TORK_API_KEY"]
response = requests.post(
"https://tork.network/api/v1/agents",
headers={
"X-API-Key": TORK_API_KEY,
"Content-Type": "application/json",
},
json={
"action": "create_agent",
"name": "Customer Support Bot",
"agentType": "assistant",
"description": "Handles tier-1 customer support",
"policyId": "policy_pii_redaction",
},
)
response.raise_for_status()
agent = response.json()["agent"]
print(f"Agent registered: {agent['id']}")Agent Detail View
Click on any agent to view detailed information:
- Activity Log - Recent actions and API calls
- Policy Violations - Any policy violations triggered
- Memory Status - Trust score and drift detection
- Dependencies - Supply chain dependencies
- Configuration - Agent settings and policies
Agent Actions
| Action | Description |
|---|---|
| Enable | Activate a disabled agent |
| Disable | Temporarily disable an agent |
| Reset Memory | Clear agent memory and reset trust score |
| Delete | Permanently remove an agent |