Module agent

Source
Expand description

Deep Agent implementation modules

This module contains the core Deep Agent implementation split into logical components:

  • api: Public API functions that mirror the Python SDK exactly
  • config: Configuration structs and builders
  • runtime: Core DeepAgent runtime implementation
  • builder: Fluent builder pattern for agent construction

Re-exports§

pub use api::create_async_deep_agent;
pub use api::create_deep_agent;
pub use api::get_default_model;
pub use builder::ConfigurableAgentBuilder;
pub use config::CreateDeepAgentParams;
pub use config::DeepAgentConfig;
pub use config::SubAgentConfig;
pub use config::SummarizationConfig;
pub use runtime::DeepAgent;

Modules§

api
Public API functions that mirror the Python SDK exactly
builder
Fluent builder API for constructing Deep Agents
config
Configuration structs and types for Deep Agents
runtime
Deep Agent runtime implementation