Skip to main content

synaptic_config/
tools.rs

1use serde::Deserialize;
2
3/// Tool configuration for the agent.
4#[derive(Debug, Clone, Deserialize, Default)]
5pub struct ToolsConfig {
6    /// Enable filesystem tools (default false).
7    #[serde(default)]
8    pub filesystem: bool,
9    /// Sandbox root directory for filesystem operations.
10    pub sandbox_root: Option<String>,
11}