pub struct GoogleEmbeddingProvider { /* private fields */ }Expand description
Google embeddings client implementing the shared EmbeddingProvider contract.
Implementations§
Source§impl GoogleEmbeddingProvider
impl GoogleEmbeddingProvider
pub fn new(api_key: impl Into<String>) -> Self
pub fn with_config( api_key: impl Into<String>, config: GoogleEmbeddingProviderConfig, ) -> Self
Trait Implementations§
Source§impl EmbeddingProvider for GoogleEmbeddingProvider
impl EmbeddingProvider for GoogleEmbeddingProvider
fn kind(&self) -> EmbeddingProviderKind
fn embed<'life0, 'async_trait>(
&'life0 self,
request: EmbeddingRequest,
) -> Pin<Box<dyn Future<Output = EmbeddingResult<EmbeddingResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn limits(&self) -> EmbeddingProviderLimits
Auto Trait Implementations§
impl !RefUnwindSafe for GoogleEmbeddingProvider
impl !UnwindSafe for GoogleEmbeddingProvider
impl Freeze for GoogleEmbeddingProvider
impl Send for GoogleEmbeddingProvider
impl Sync for GoogleEmbeddingProvider
impl Unpin for GoogleEmbeddingProvider
impl UnsafeUnpin for GoogleEmbeddingProvider
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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