pub struct EmbeddingModel<H = Client> {
pub model: String,
pub encoding_format: Option<EncodingFormat>,
pub user: Option<String>,
/* private fields */
}Fields§
§model: String§encoding_format: Option<EncodingFormat>§user: Option<String>Implementations§
Trait Implementations§
Source§impl<H: Clone> Clone for EmbeddingModel<H>
impl<H: Clone> Clone for EmbeddingModel<H>
Source§fn clone(&self) -> EmbeddingModel<H>
fn clone(&self) -> EmbeddingModel<H>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<H> EmbeddingModel for EmbeddingModel<H>where
Client<H>: HttpClientExt + Clone + Debug + WasmCompatSend + WasmCompatSync + 'static,
H: Clone + Default + Debug + WasmCompatSend + WasmCompatSync + 'static,
impl<H> EmbeddingModel for EmbeddingModel<H>where
Client<H>: HttpClientExt + Clone + Debug + WasmCompatSend + WasmCompatSync + 'static,
H: Clone + Default + Debug + WasmCompatSend + WasmCompatSync + 'static,
Source§const MAX_DOCUMENTS: usize = 1024
const MAX_DOCUMENTS: usize = 1024
The maximum number of documents that can be embedded in a single request.
type Client = Client<CopilotExt, H>
fn make( client: &Self::Client, model: impl Into<String>, ndims: Option<usize>, ) -> Self
Source§async fn embed_texts(
&self,
documents: impl IntoIterator<Item = String>,
) -> Result<Vec<Embedding>, EmbeddingError>
async fn embed_texts( &self, documents: impl IntoIterator<Item = String>, ) -> Result<Vec<Embedding>, EmbeddingError>
Embed multiple text documents in a single request
Source§fn embed_text(
&self,
text: &str,
) -> impl Future<Output = Result<Embedding, EmbeddingError>> + WasmCompatSend
fn embed_text( &self, text: &str, ) -> impl Future<Output = Result<Embedding, EmbeddingError>> + WasmCompatSend
Embed a single text document.
Auto Trait Implementations§
impl<H> Freeze for EmbeddingModel<H>where
H: Freeze,
impl<H = Client> !RefUnwindSafe for EmbeddingModel<H>
impl<H> Send for EmbeddingModel<H>where
H: Send,
impl<H> Sync for EmbeddingModel<H>where
H: Sync,
impl<H> Unpin for EmbeddingModel<H>where
H: Unpin,
impl<H> UnsafeUnpin for EmbeddingModel<H>where
H: UnsafeUnpin,
impl<H = Client> !UnwindSafe for EmbeddingModel<H>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> CloneableStorage for T
impl<T> CloneableStorage for T
fn clone_storage(&self) -> Box<dyn CloneableStorage>
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> 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