pub struct AgentComponentBuilder<'config> { /* private fields */ }
Expand description
Builder for AgentComponentSet
.
The builder exposes hooks for overriding individual components which makes the agent easier to adapt for open-source scenarios or bespoke deployments.
Implementations§
Source§impl<'config> AgentComponentBuilder<'config>
impl<'config> AgentComponentBuilder<'config>
Sourcepub fn new(config: &'config AgentConfig) -> Self
pub fn new(config: &'config AgentConfig) -> Self
Create a new builder scoped to the provided configuration.
Sourcepub fn with_client(self, client: AnyClient) -> Self
pub fn with_client(self, client: AnyClient) -> Self
Override the LLM client instance.
Sourcepub fn with_tool_registry(self, registry: Arc<ToolRegistry>) -> Self
pub fn with_tool_registry(self, registry: Arc<ToolRegistry>) -> Self
Override the tool registry instance.
Sourcepub fn with_decision_tracker(self, tracker: DecisionTracker) -> Self
pub fn with_decision_tracker(self, tracker: DecisionTracker) -> Self
Override the decision tracker instance.
Sourcepub fn with_error_recovery(self, manager: ErrorRecoveryManager) -> Self
pub fn with_error_recovery(self, manager: ErrorRecoveryManager) -> Self
Override the error recovery manager instance.
Sourcepub fn with_summarizer(self, summarizer: ConversationSummarizer) -> Self
pub fn with_summarizer(self, summarizer: ConversationSummarizer) -> Self
Override the conversation summarizer instance.
Sourcepub fn with_tree_sitter_analyzer(self, analyzer: TreeSitterAnalyzer) -> Self
pub fn with_tree_sitter_analyzer(self, analyzer: TreeSitterAnalyzer) -> Self
Override the tree-sitter analyzer instance.
Sourcepub fn with_compaction_engine(self, engine: Arc<CompactionEngine>) -> Self
pub fn with_compaction_engine(self, engine: Arc<CompactionEngine>) -> Self
Override the compaction engine instance.
Sourcepub fn with_session_info(self, session_info: SessionInfo) -> Self
pub fn with_session_info(self, session_info: SessionInfo) -> Self
Override the session metadata.
Sourcepub fn build(self) -> Result<AgentComponentSet>
pub fn build(self) -> Result<AgentComponentSet>
Build the component set, lazily constructing any missing dependencies.
Auto Trait Implementations§
impl<'config> Freeze for AgentComponentBuilder<'config>
impl<'config> !RefUnwindSafe for AgentComponentBuilder<'config>
impl<'config> Send for AgentComponentBuilder<'config>
impl<'config> Sync for AgentComponentBuilder<'config>
impl<'config> Unpin for AgentComponentBuilder<'config>
impl<'config> !UnwindSafe for AgentComponentBuilder<'config>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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