pub struct MockProvider { /* private fields */ }Expand description
Mock provider for testing and development
Implementations§
Source§impl MockProvider
impl MockProvider
Trait Implementations§
Source§impl Provider for MockProvider
impl Provider for MockProvider
Source§fn send_messages<'life0, 'async_trait>(
&'life0 self,
_messages: Vec<Message>,
_tools: Vec<Box<dyn Tool>>,
) -> Pin<Box<dyn Future<Output = Result<ProviderResponse, ProviderError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn send_messages<'life0, 'async_trait>(
&'life0 self,
_messages: Vec<Message>,
_tools: Vec<Box<dyn Tool>>,
) -> Pin<Box<dyn Future<Output = Result<ProviderResponse, ProviderError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Send messages to the LLM and get a complete response
Source§fn stream_response<'life0, 'async_trait>(
&'life0 self,
_messages: Vec<Message>,
_tools: Vec<Box<dyn Tool>>,
) -> Pin<Box<dyn Future<Output = Result<Receiver<Result<ProviderEvent, ProviderError>>, ProviderError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn stream_response<'life0, 'async_trait>(
&'life0 self,
_messages: Vec<Message>,
_tools: Vec<Box<dyn Tool>>,
) -> Pin<Box<dyn Future<Output = Result<Receiver<Result<ProviderEvent, ProviderError>>, ProviderError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Stream response from the LLM
Auto Trait Implementations§
impl Freeze for MockProvider
impl RefUnwindSafe for MockProvider
impl Send for MockProvider
impl Sync for MockProvider
impl Unpin for MockProvider
impl UnsafeUnpin for MockProvider
impl UnwindSafe for MockProvider
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