24 lines
492 B
TOML
24 lines
492 B
TOML
# Global LLM configuration
|
|
[llm]
|
|
model = "claude-3-5-sonnet"
|
|
base_url = "https://api.openai.com/v1"
|
|
api_key = "sk-..."
|
|
max_tokens = 4096
|
|
temperature = 0.0
|
|
|
|
# Optional configuration for specific LLM models
|
|
[llm.vision]
|
|
model = "claude-3-5-sonnet"
|
|
base_url = "https://api.openai.com/v1"
|
|
api_key = "sk-..."
|
|
|
|
# Sandbox configuration
|
|
[sandbox]
|
|
use_sandbox = false
|
|
image = "python:3.10-slim"
|
|
work_dir = "/workspace"
|
|
memory_limit = "1g" # 512m
|
|
cpu_limit = 2.0
|
|
timeout = 300
|
|
network_enabled = false
|