-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathvtcode.toml.example
More file actions
44 lines (37 loc) · 1.22 KB
/
vtcode.toml.example
File metadata and controls
44 lines (37 loc) · 1.22 KB
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
38
39
40
41
42
43
44
# VT Code Configuration File (Example)
# Copy this file to vtcode.toml and keep only the overrides you need.
# This example is intentionally sparse. Defaults are omitted on purpose.
# Feature flags (Codex-compatible)
[features]
# Master toggle for the memories subsystem. When true, VT Code extracts
# durable context from completed threads and injects it into future sessions.
memories = true
[agent]
# Replace these values for your provider and API key environment variable.
provider = "ollama"
api_key_env = "OLLAMA_API_KEY"
default_model = "gpt-oss:120b-cloud"
reasoning_effort = "low"
[agent.persistent_memory]
enabled = true
# Codex-compatible memories sub-configuration
[agent.persistent_memory.memories]
generate_memories = true
use_memories = true
# extract_model = "gpt-4.1-mini"
# consolidation_model = "gpt-4.1-mini"
[telemetry]
atif_enabled = true
bottleneck_tracing = false
[ui.terminal_title]
items = ["project", "spinner", "app-name", "git-branch"]
[tools.policies]
# Add only the overrides you want to differ from defaults.
enter_plan_mode = "prompt"
exit_plan_mode = "prompt"
plan_task_tracker = "prompt"
request_user_input = "allow"
task_tracker = "prompt"
unified_exec = "allow"
unified_file = "allow"
unified_search = "allow"