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