pub struct VertexProvider { /* private fields */ }Expand description
Google Cloud Vertex AI provider
Implementations§
Trait Implementations§
Source§impl Provider for VertexProvider
impl Provider for VertexProvider
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 VertexProvider
impl !RefUnwindSafe for VertexProvider
impl Send for VertexProvider
impl Sync for VertexProvider
impl Unpin for VertexProvider
impl UnsafeUnpin for VertexProvider
impl !UnwindSafe for VertexProvider
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