Struct clust::Client

source ·
pub struct Client { /* private fields */ }
Expand description

The API client.

Implementations§

source§

impl Client

source

pub fn from_env() -> Result<Self, VarError>

Create a new API client with the API key loaded from the environment variable: ANTHROPIC_API_KEY and default options.

§Example
use clust::Client;

let client = Client::from_env().unwrap();
source

pub fn from_api_key(api_key: ApiKey) -> Self

Create a new API client with the API key and default options.

§Arguments
  • api_key - The API key.
§Example
use clust::Client;

let api_key = clust::ApiKey::new("api-key");

let client = Client::from_api_key(api_key);
source§

impl Client

source

pub async fn create_a_message( &self, request_body: MessagesRequestBody ) -> Result<MessagesResponseBody, MessagesError>

Create a Message.

Send a structured list of input messages with text and/or image content, and the model will generate the next message in the conversation.

The Messages API can be used for either single queries or stateless multi-turn conversations.

See also Create a Message.

§Arguments
  • request_body - The request body.
§NOTE

The stream option must be None or StreamOption::ReturnOnce.

§Example
use clust::Client;
use clust::messages::{MessagesRequestBody, ClaudeModel, Message, Role, MaxTokens};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let client = Client::from_env()?;
    let model = ClaudeModel::Claude3Sonnet20240229;
    let max_tokens = MaxTokens::new(1024, model)?;
    let request_body = MessagesRequestBody {
        model,
        max_tokens,
        messages: vec![
            Message::user("Hello, Claude!"),
        ],
        ..Default::default()
    };

    let response = client
        .create_a_message(request_body)
        .await?;

    Ok(())
}
source

pub async fn create_a_message_stream( &self, request_body: MessagesRequestBody ) -> Result<impl Stream<Item = Result<MessageChunk, StreamError>>, MessagesError>

Create a Message with incrementally streaming the response using server-sent events (SSE).

See also Streaming Messages.

§Arguments
  • request_body - The request body.
§NOTE

The stream option must be StreamOption::ReturnStream.

§Example
use clust::Client;
use clust::messages::{MessagesRequestBody, ClaudeModel, Message, Role, MaxTokens, StreamOption};
use tokio_stream::StreamExt; // or futures_util::StreamExt to `stream.next().await`.

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let client = Client::from_env()?;
    let model = ClaudeModel::Claude3Sonnet20240229;
    let max_tokens = MaxTokens::new(1024, model)?;
    let request_body = MessagesRequestBody {
        model,
        max_tokens,
        messages: vec![
            Message::user("Hello, Claude!"),
        ],
        stream: Some(StreamOption::ReturnStream),
        ..Default::default()
    };

    let mut stream = client
        .create_a_message_stream(request_body)
        .await?;

    while let Some(chunk) = stream.next().await {
        match chunk {
            Ok(chunk) => {
                // Process the chunk.
            }
            Err(error) => {
                // Handle the error.
            }
        }
    }

    Ok(())
}

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl Freeze for Client

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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