pub struct Client { /* private fields */ }
Implementations
sourceimpl Client
impl Client
sourcepub async fn create<T>(
&self,
engine_id: Option<&str>,
model: &T
) -> Result<Response, ResponseError> where
T: Endpoint,
pub async fn create<T>(
&self,
engine_id: Option<&str>,
model: &T
) -> Result<Response, ResponseError> where
T: Endpoint,
Returns a new response from the OpenAI API.
Arguments
engine_id
- The engine id to use. Due to few endpoints this can be optional.model
- The model to use. Each Model in the endpoints module is a corresponding model.
Example
use std::borrow::Cow;
use openai_rs::client::Client;
use openai_rs::endpoints::edits::Edit;
use openai_rs::endpoints::{Response, ResponseError};
use openai_rs::openai;
// Create the Client with your API key.
let client: Client = openai::new("api_key");
// Create the Edit struct with the input and instruction.
let edit = Edit {
input: Cow::Borrowed("What day of the wek is it?"),
instruction: Cow::Borrowed("Fix the spelling mistakes"),
..Default::default()
};
// Send the request to the OpenAI API.
let response: Result<Response, ResponseError> = client.create(
Some("text-davinci-edit-001"), &edit
).await;
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more