Agent Management Commands
Commands for managing agents and workflow templates.
rad agentsβ
Manage agents in the workspace.
Subcommandsβ
listβ
List all discovered agents.
rad agents list [options]
Options:
--json- Output as JSON
search <query>β
Search agents by name or description.
rad agents search <query> [--json]
info <id>β
Show detailed information about an agent.
rad agents info <id> [--json]
validate <id>β
Validate agent configuration.
rad agents validate <id>
create <id>β
Create a new agent template.
rad agents create <id>
Examplesβ
# List all agents
rad agents list
# Search for agents
rad agents search "code"
# Get agent info
rad agents info arch-agent
# Validate agent
rad agents validate arch-agent
# Create new agent
rad agents create my-agent
Self-Hosted Model Configurationβ
Radium supports self-hosted models (Ollama, vLLM, LocalAI) via the Universal provider. Configure agents to use local models:
[agent]
id = "local-agent"
name = "Local Agent"
description = "Agent using self-hosted model"
prompt_path = "prompts/agents/my-agents/local-agent.md"
engine = "universal"
model = "llama3.2"
Environment Setup:
# Ollama
export UNIVERSAL_BASE_URL="http://localhost:11434/v1"
# vLLM
export UNIVERSAL_BASE_URL="http://localhost:8000/v1"
# LocalAI
export UNIVERSAL_BASE_URL="http://localhost:8080/v1"
See the Self-Hosted Models Documentation for complete setup guides and examples.
rad templatesβ
Manage workflow templates.
Subcommandsβ
listβ
List all workflow templates.
rad templates list [--json]
info <id>β
Show template details.
rad templates info <id> [--json]
validate <id>β
Validate template structure.
rad templates validate <id>
Examplesβ
# List templates
rad templates list
# Get template info
rad templates info basic-workflow
# Validate template
rad templates validate basic-workflow