Persona Capabilities
Capabilities
Loading...Persona View
No capabilities selectedPersona Chat
Draft JSON
{}
Teams
Teams are managed from Agency.
Agency
Personal Team
Personal Team
Files
Documentation
Contact Us
Hurozo CLI
Terminal-first agent work
Hurozo CLI
The same Hurozo agent runtime, model routes, approvals, and connected tools from your shell.
brew tap hurozo/hurozo-cli
brew install hurozo-cli
Model routing
Switch between Hurozo, Gemini, Opus, and ChatGPT-backed routes when your account is configured for them.
Approvals
Review tool permissions from the terminal and keep remembered decisions scoped to the exact operation.
Second opinions
Use model arbitration to ask another available route for critique, checks, or a different perspective.
Connected tools
Use the same account-backed connectors and skills available in Hurozo's desktop and WebCLI experiences.
Hurozo SDK
Python agent invocation
Hurozo SDK
Invoke saved Hurozo agents from Python using the same API tokens, inputs, outputs, and runtime routing used by Agent Builder.
pip install hurozo
import json
import os
from hurozo import Agent
os.environ["HUROZO_API_TOKEN"] = "YOUR_API_TOKEN"
agent = Agent("sentiment-analyser")
inputs = {
"prompt": "Analyze sentiment and return JSON. Text:",
"input": "I am very happy!",
}
result = agent.run(inputs)
print(json.dumps(result, indent=2))
Agent lookup
Use an agent name, saved agent id, or agent UUID. The SDK resolves the correct execution target.
Structured inputs
Pass a Python dictionary matching the API input keys exposed by the saved workflow.
Hosted runtime
Runs against Hurozo's execution endpoint, including model routing, tools, outputs, and usage accounting.