Skip to main content

PluginSpec

Struct PluginSpec 

Source
pub struct PluginSpec {
Show 18 fields pub tool_providers: Vec<Arc<dyn ToolProvider>>, pub host_events: Vec<HostEvent>, pub prompt_contributors: Vec<PromptContributor>, pub tool_surface_contributors: Vec<ToolSurfaceContributor>, pub tool_discovery_contributors: Vec<ToolDiscoveryContributor>, pub before_turn_hooks: Vec<BeforeTurnHook>, pub before_tool_call_hooks: Vec<BeforeToolCallHook>, pub after_tool_call_hooks: Vec<AfterToolCallHook>, pub after_turn_hooks: Vec<AfterTurnHook>, pub checkpoint_hooks: Vec<CheckpointHook>, pub assistant_stream_hooks: Vec<AssistantStreamHook>, pub assistant_response_hooks: Vec<AssistantResponseHook>, pub tool_result_projector: Option<ToolResultProjector>, pub runtime_event_hooks: Vec<PluginLifecycleEventHook>, pub session_config_mutators: Vec<SessionConfigMutator>, pub plugin_actions: Vec<(PluginActionDef, PluginActionHandler)>, pub turn_context_transforms: Vec<(i32, Arc<dyn TurnContextTransform>)>, pub context_compactors: Vec<(i32, Arc<dyn ContextCompactor>)>,
}

Fields§

§tool_providers: Vec<Arc<dyn ToolProvider>>§host_events: Vec<HostEvent>§prompt_contributors: Vec<PromptContributor>§tool_surface_contributors: Vec<ToolSurfaceContributor>§tool_discovery_contributors: Vec<ToolDiscoveryContributor>§before_turn_hooks: Vec<BeforeTurnHook>§before_tool_call_hooks: Vec<BeforeToolCallHook>§after_tool_call_hooks: Vec<AfterToolCallHook>§after_turn_hooks: Vec<AfterTurnHook>§checkpoint_hooks: Vec<CheckpointHook>§assistant_stream_hooks: Vec<AssistantStreamHook>§assistant_response_hooks: Vec<AssistantResponseHook>§tool_result_projector: Option<ToolResultProjector>§runtime_event_hooks: Vec<PluginLifecycleEventHook>§session_config_mutators: Vec<SessionConfigMutator>§plugin_actions: Vec<(PluginActionDef, PluginActionHandler)>§turn_context_transforms: Vec<(i32, Arc<dyn TurnContextTransform>)>§context_compactors: Vec<(i32, Arc<dyn ContextCompactor>)>

Implementations§

Source§

impl PluginSpec

Source

pub fn new() -> Self

Source

pub fn with_tool_provider(self, provider: Arc<dyn ToolProvider>) -> Self

Source

pub fn with_host_event(self, event: HostEvent) -> Self

Source

pub fn with_prompt_contributor(self, contributor: PromptContributor) -> Self

Source

pub fn with_tool_surface_contributor( self, contributor: ToolSurfaceContributor, ) -> Self

Source

pub fn with_tool_discovery_contributor( self, contributor: ToolDiscoveryContributor, ) -> Self

Source

pub fn with_before_turn(self, hook: BeforeTurnHook) -> Self

Source

pub fn with_before_tool_call(self, hook: BeforeToolCallHook) -> Self

Source

pub fn with_after_tool_call(self, hook: AfterToolCallHook) -> Self

Source

pub fn with_after_turn(self, hook: AfterTurnHook) -> Self

Source

pub fn with_checkpoint(self, hook: CheckpointHook) -> Self

Source

pub fn with_assistant_stream(self, hook: AssistantStreamHook) -> Self

Source

pub fn with_assistant_response(self, hook: AssistantResponseHook) -> Self

Source

pub fn with_tool_result_projector(self, projector: ToolResultProjector) -> Self

Source

pub fn with_runtime_event(self, hook: PluginLifecycleEventHook) -> Self

Source

pub fn with_session_config_mutator(self, hook: SessionConfigMutator) -> Self

Source

pub fn with_plugin_action( self, def: PluginActionDef, handler: PluginActionHandler, ) -> Self

Source

pub fn with_plugin_action_typed<Op, F, Fut>(self, handler: F) -> Self
where Op: PluginAction, F: Fn(PluginActionContext, Op::Args) -> Fut + Send + Sync + 'static, Fut: Future<Output = Result<Op::Output, PluginActionFailure>> + Send + 'static,

Source

pub fn with_plugin_action_sync<Op, F>(self, handler: F) -> Self
where Op: PluginAction, F: Fn(PluginActionContext, Op::Args) -> Result<Op::Output, PluginActionFailure> + Send + Sync + 'static,

Source

pub fn with_turn_context_transform( self, priority: i32, transform: Arc<dyn TurnContextTransform>, ) -> Self

Source

pub fn with_context_compactor( self, priority: i32, compactor: Arc<dyn ContextCompactor>, ) -> Self

Trait Implementations§

Source§

impl Clone for PluginSpec

Source§

fn clone(&self) -> PluginSpec

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for PluginSpec

Source§

fn default() -> PluginSpec

Returns the “default value” for a type. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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