tiny-trae 0.1.0

An AI coding assistant with tool integration
# Tiny Trae Configuration Example
# Copy this file to config.toml and modify as needed

[anthropic]
# Your Anthropic API key - you can also use ANTHROPIC_API_KEY environment variable
api_key = "your-api-key-here"
base_url = "https://api.anthropic.com"

[openrouter]
# OpenRouter support (future feature)
support = false

[model]
# Claude model version
version = "claude-3-5-sonnet-20241022"
# Maximum tokens for responses
max_tokens = 4096
# Temperature for response randomness (0.0 to 1.0)
temperature = 0.7

[workspace]
# Root path for the workspace
root_path = "."
# Files/directories to ignore during operations
ignore_patterns = [
    ".git",
    "target",
    "node_modules",
    ".vscode",
    ".idea",
    "dist",
    "build",
    "*.log",
    "*.tmp",
    ".DS_Store",
    "Thumbs.db"
]