Deploy an AI Agent Template
varity_deploy_agentDeploy an AI agent from five templates (hermes, openclaw, agent-zero, autoresearch, eliza-venice) to a unique URL. Supply required environment variables to customize the deployment.
Instructions
Deploy a curated AI agent from one of the 5 templates (hermes, openclaw, agent-zero, autoresearch, eliza-venice), accessible at https://varity.app//. Use this when the developer says 'deploy hermes', 'I want a Telegram bot', 'spin up agent-zero', or similar. Required environment variables (which the developer provides via the env parameter) vary per agent, call varity_agent_info first to see what's needed. Pass name to give the deployment a memorable URL slug. Use varity_delete_deployment to stop the deployment and its billing later.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| env | No | Environment variables to pass to the agent container, as a key-value object. Pass everything from the agent's required_env list (call varity_agent_info to see which). Example for hermes: { OPENAI_API_KEY: 'sk-...', TELEGRAM_BOT_TOKEN: '...', TELEGRAM_ALLOWED_USERS: '123,456' } | |
| name | No | Memorable name for this deployment. Becomes the URL slug at varity.app/<name>/. Defaults to <agent>-<random> if omitted. | |
| agent | Yes | The agent slug. One of: hermes, openclaw, agent-zero, autoresearch, eliza-venice. Run varity_list_agents to see all options. |