Skip to main content

vtcode_config/constants/
output_limits.rs

1/// Maximum size for single agent message payloads (bytes).
2pub const MAX_AGENT_MESSAGES_SIZE: usize = 10 * 1024 * 1024;
3/// Maximum size for entire message history payloads (bytes).
4pub const MAX_ALL_MESSAGES_SIZE: usize = 50 * 1024 * 1024;
5/// Maximum size per line (bytes).
6pub const MAX_LINE_LENGTH: usize = 1024 * 1024;
7/// Default message count limit.
8pub const DEFAULT_MESSAGE_LIMIT: usize = 10_000;
9/// Maximum message count limit.
10pub const MAX_MESSAGE_LIMIT: usize = 50_000;