Struct ConfigurableAgentBuilder

Source
pub struct ConfigurableAgentBuilder { /* private fields */ }
Expand description

Builder API to assemble a DeepAgent in a single fluent flow, mirroring the Python create_configurable_agent experience. Prefer this for ergonomic construction.

Implementations§

Source§

impl ConfigurableAgentBuilder

Source

pub fn new(instructions: impl Into<String>) -> ConfigurableAgentBuilder

Source

pub fn with_model( self, model: Arc<dyn LanguageModel>, ) -> ConfigurableAgentBuilder

Set the language model for the agent (mirrors Python’s model parameter)

Source

pub fn with_planner( self, planner: Arc<dyn PlannerHandle>, ) -> ConfigurableAgentBuilder

Low-level planner API (for advanced use cases)

Source

pub fn with_openai_chat( self, config: OpenAiConfig, ) -> Result<ConfigurableAgentBuilder, Error>

Convenience method for OpenAI models (equivalent to model=OpenAiChatModel)

Source

pub fn with_anthropic_messages( self, config: AnthropicConfig, ) -> Result<ConfigurableAgentBuilder, Error>

Convenience method for Anthropic models (equivalent to model=AnthropicMessagesModel)

Source

pub fn with_gemini_chat( self, config: GeminiConfig, ) -> Result<ConfigurableAgentBuilder, Error>

Convenience method for Gemini models (equivalent to model=GeminiChatModel)

Source

pub fn with_tool(self, tool: Arc<dyn Tool>) -> ConfigurableAgentBuilder

Add a tool to the agent

Source

pub fn with_tools<I>(self, tools: I) -> ConfigurableAgentBuilder
where I: IntoIterator<Item = Arc<dyn Tool>>,

Add multiple tools

Source

pub fn with_subagent_config<I>(self, cfgs: I) -> ConfigurableAgentBuilder
where I: IntoIterator<Item = SubAgentConfig>,

Source

pub fn with_subagent_tools<I>(self, tools: I) -> ConfigurableAgentBuilder
where I: IntoIterator<Item = Arc<dyn Tool>>,

Convenience method: automatically create subagents from a list of tools. Each tool becomes a specialized subagent with that single tool.

Source

pub fn with_summarization( self, config: SummarizationConfig, ) -> ConfigurableAgentBuilder

Source

pub fn with_tool_interrupt( self, tool_name: impl Into<String>, policy: HitlPolicy, ) -> ConfigurableAgentBuilder

Source

pub fn with_builtin_tools<I, S>(self, names: I) -> ConfigurableAgentBuilder
where I: IntoIterator<Item = S>, S: Into<String>,

Source

pub fn with_auto_general_purpose( self, enabled: bool, ) -> ConfigurableAgentBuilder

Source

pub fn with_prompt_caching(self, enabled: bool) -> ConfigurableAgentBuilder

Source

pub fn with_checkpointer( self, checkpointer: Arc<dyn Checkpointer>, ) -> ConfigurableAgentBuilder

Source

pub fn build(self) -> Result<DeepAgent, Error>

Source

pub fn build_async(self) -> Result<DeepAgent, Error>

Build an agent using the async constructor alias. This mirrors the Python async_create_deep_agent entry point, while reusing the same runtime internals.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,