use std::{path::PathBuf, time::Duration};
use tracing::Level;
pub struct EngineEnv {
pub compose_file: Option<PathBuf>,
pub mcp_host: String,
pub ollama_host: String,
pub ollama_models: Vec<String>,
pub ollama_exclusive: bool,
pub log_level: Level,
pub timeout: Duration,
}