pub struct CompletionModel<T = Client> {
pub model: String,
/* private fields */
}Fields§
§model: StringImplementations§
Source§impl<T> CompletionModel<T>where
T: HttpClientExt,
impl<T> CompletionModel<T>where
T: HttpClientExt,
Source§impl<T> CompletionModel<T>where
T: HttpClientExt + Clone + 'static,
impl<T> CompletionModel<T>where
T: HttpClientExt + Clone + 'static,
Sourcepub async fn raw_completion(
&self,
completion_request: CompletionRequest,
) -> Result<CompletionResponse, CompletionError>
pub async fn raw_completion( &self, completion_request: CompletionRequest, ) -> Result<CompletionResponse, CompletionError>
Execute a completion and return Cohere’s own wire response.
This is the escape hatch for Cohere-specific fields rig does not
normalize (citations, tool plans). It shares the request builder,
transport, telemetry, and error handling with
CompletionModel::completion,
which calls it and then applies the provider-local mapping — one network
request either way.
Source§impl<T> CompletionModel<T>where
T: HttpClientExt + Clone + 'static,
impl<T> CompletionModel<T>where
T: HttpClientExt + Clone + 'static,
Sourcepub async fn raw_stream(
&self,
request: CompletionRequest,
) -> Result<RawStreamingResult<StreamingCompletionResponse>, CompletionError>
pub async fn raw_stream( &self, request: CompletionRequest, ) -> Result<RawStreamingResult<StreamingCompletionResponse>, CompletionError>
Open a stream whose terminal record stays Cohere-native.
This is the escape hatch for Cohere’s own terminal payload; it shares the
request builder, transport, telemetry, and error handling with
CompletionModel::stream,
which calls it and normalizes the terminal record once through
streaming::normalize_stream — one network request either way.
Trait Implementations§
Source§impl<T: Clone> Clone for CompletionModel<T>
impl<T: Clone> Clone for CompletionModel<T>
Source§fn clone(&self) -> CompletionModel<T>
fn clone(&self) -> CompletionModel<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T> CompletionModel for CompletionModel<T>where
T: HttpClientExt + Clone + 'static,
impl<T> CompletionModel for CompletionModel<T>where
T: HttpClientExt + Clone + 'static,
Source§async fn completion(
&self,
completion_request: CompletionRequest,
) -> Result<CompletionResponse, CompletionError>
async fn completion( &self, completion_request: CompletionRequest, ) -> Result<CompletionResponse, CompletionError>
Generates a completion response for the given completion request.
Source§async fn stream(
&self,
request: CompletionRequest,
) -> Result<StreamingCompletionResponse, CompletionError>
async fn stream( &self, request: CompletionRequest, ) -> Result<StreamingCompletionResponse, CompletionError>
Streams a completion response for the given completion request.
Source§fn completion_request(
&self,
prompt: impl Into<Message>,
) -> CompletionRequestBuilder<Self>
fn completion_request( &self, prompt: impl Into<Message>, ) -> CompletionRequestBuilder<Self>
Generates a completion request builder for the given
prompt.Source§fn capabilities(&self) -> ProviderCapabilities
fn capabilities(&self) -> ProviderCapabilities
Provider behavior a runtime should account for when preparing requests. Read more
Source§impl<T> ConstructCompletionModel<Client<CohereExt, T>> for CompletionModel<T>
impl<T> ConstructCompletionModel<Client<CohereExt, T>> for CompletionModel<T>
Auto Trait Implementations§
impl<T> Freeze for CompletionModel<T>where
T: Freeze,
impl<T> RefUnwindSafe for CompletionModel<T>where
T: RefUnwindSafe,
impl<T> Send for CompletionModel<T>where
T: Send,
impl<T> Sync for CompletionModel<T>where
T: Sync,
impl<T> Unpin for CompletionModel<T>where
T: Unpin,
impl<T> UnsafeUnpin for CompletionModel<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for CompletionModel<T>where
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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