1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Tiny Trae Configuration Example
# Copy this file to config.toml and modify as needed
[]
# Your Anthropic API key - you can also use ANTHROPIC_API_KEY environment variable
= "your-api-key-here"
= "https://api.anthropic.com"
[]
# OpenRouter support (future feature)
= false
[]
# Claude model version
= "claude-3-5-sonnet-20241022"
# Maximum tokens for responses
= 4096
# Temperature for response randomness (0.0 to 1.0)
= 0.7
[]
# Root path for the workspace
= "."
# Files/directories to ignore during operations
= [
".git",
"target",
"node_modules",
".vscode",
".idea",
"dist",
"build",
"*.log",
"*.tmp",
".DS_Store",
"Thumbs.db"
]