pub const DEFAULT_OLLAMA_PORT: u16 = 11434;
pub const COMMAND_TIMEOUT_SECS: u64 = 30;
pub const HTTP_REQUEST_TIMEOUT_SECS: u64 = 600;
pub const UI_REFRESH_INTERVAL_MS: u64 = 50;
pub const UI_SCROLL_LINES: u16 = 3;
pub const UI_DEFAULT_VIEWPORT_HEIGHT: u16 = 20;
pub const UI_STATUS_MESSAGE_THRESHOLD: u16 = 3; pub const UI_ERROR_LOG_MAX_SIZE: usize = 50;
pub const DEFAULT_TEMPERATURE: f32 = 0.7;
pub const DEFAULT_MAX_TOKENS: usize = 4096;
pub const DEFAULT_EXCLUDE_PATTERNS: &[&str] = &[
"*.log",
"*.tmp",
".git/*",
".env",
"target/*",
"node_modules/*",
"__pycache__/*",
".venv/*",
"venv/*",
"*.pyc",
"*.pyo",
".DS_Store",
"Thumbs.db",
"*.swp",
"*.swo",
"*~",
".idea/*",
".vscode/*",
"*.iml",
".pytest_cache/*",
".mypy_cache/*",
".ruff_cache/*",
"dist/*",
"build/*",
"*.egg-info/*",
];