ConfigurableAgentBuilder

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>) -> Self

Source

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

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

Source

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

Low-level planner API (for advanced use cases)

Source

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

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

Source

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

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

Source

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

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

Source

pub fn with_tool(self, tool: Arc<dyn ToolHandle>) -> Self

Source

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

Source

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

Source

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

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) -> Self

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

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.

Source§

impl<T> Instrument for T

Source§

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

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

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> PolicyExt for T
where T: ?Sized,

Source§

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
Source§

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, 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.
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

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