vtcode-config 0.160.1

Config loader components shared across VT Code and downstream adopters
1
2
3
4
5
6
7
/// Shared byte budget used when loading project documentation and instruction files.
pub const DEFAULT_MAX_BYTES: usize = 16 * 1024;

/// Soft token budget for the fully composed system prompt. When the prompt
/// exceeds this, VT Code warns and trims only low-priority advisory sections
/// unless `agent.trim_system_prompt` is explicitly disabled.
pub const DEFAULT_MAX_SYSTEM_PROMPT_TOKENS: u64 = 8_000;