Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions args.go
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,36 @@ const (
// ArgDedicatedInferenceTokenName is the name for a dedicated inference auth token.
ArgDedicatedInferenceTokenName = "token-name"

// ArgHarnessURL is the base URL for hosted agents harness-api (local PoC).
ArgHarnessURL = "harness-url"

// ArgHostedAgent is the managed agent type for doctl agents deploy.
ArgHostedAgent = "agent"

// ArgHostedAgentRepo is an optional repository hint at session creation.
ArgHostedAgentRepo = "repo"

// ArgHostedAgentSession is a harness session id.
ArgHostedAgentSession = "session"

// ArgAgentsGitHubToken is a GitHub PAT for clone/push/PR (env: GITHUB_TOKEN).
ArgAgentsGitHubToken = "github-token"

// ArgAgentsGitHubOwner is the GitHub user/org for PR targets (default: gane5hvarma).
ArgAgentsGitHubOwner = "github-owner"

// ArgAgentsOpenCodeAPIKey is the OpenCode Zen/Go subscription key (env: OPENCODE_API_KEY).
ArgAgentsOpenCodeAPIKey = "opencode-api-key"

// ArgAgentsOpenRouterAPIKey is the OpenRouter API key for free/paid models (env: OPENROUTER_API_KEY).
ArgAgentsOpenRouterAPIKey = "openrouter-api-key"

// ArgAgentsAnthropicAPIKey overrides the model key for opencode (env: ANTHROPIC_API_KEY).
ArgAgentsAnthropicAPIKey = "anthropic-api-key"

// ArgAgentsOpenCodeModel is opencode provider/model (env: OPENCODE_MODEL), e.g. opencode-go/glm-4.5.
ArgAgentsOpenCodeModel = "opencode-model"

// Serverless inference API args (https://inference.do-ai.run).

// ArgInferenceModel is the model ID used across inference endpoints.
Expand Down Expand Up @@ -908,4 +938,5 @@ const (
ArgInferenceText = "text"
// ArgInferenceSecondsTotal is the audio duration in seconds for async audio generation.
ArgInferenceSecondsTotal = "seconds-total"

)
Loading
Loading