29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[providers]
|
|
default_provider = "databricks"
|
|
# Optional: Specify different providers for coach and player in autonomous mode
|
|
# If not specified, will use default_provider for both
|
|
# coach = "databricks" # Provider for coach (code reviewer)
|
|
# player = "anthropic" # Provider for player (code implementer)
|
|
# Note: Make sure the specified providers are configured below
|
|
|
|
[providers.databricks]
|
|
host = "https://your-workspace.cloud.databricks.com"
|
|
# token = "your-databricks-token" # Optional - will use OAuth if not provided
|
|
model = "databricks-claude-sonnet-4"
|
|
max_tokens = 4096
|
|
temperature = 0.1
|
|
use_oauth = true
|
|
|
|
[agent]
|
|
fallback_default_max_tokens = 8192
|
|
enable_streaming = true
|
|
timeout_seconds = 60
|
|
# Retry configuration for recoverable errors (timeouts, rate limits, etc.)
|
|
max_retry_attempts = 3 # Default mode retry attempts
|
|
autonomous_max_retry_attempts = 6 # Autonomous mode retry attempts (higher for long-running tasks)
|
|
|
|
[computer_control]
|
|
enabled = false # Set to true to enable computer control (requires OS permissions)
|
|
require_confirmation = true
|
|
max_actions_per_second = 5
|