vtcode 0.98.0

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
# 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.

[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

[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"