pub struct Client { /* private fields */ }

Implementations

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more