fieri

Note: fieri's master branch might contain breaking changes. For the most recently released code, look to the latest tag.

Overview

Unofficial Rust client for the OpenAI's API.

Fieri provides an asynchronous Rust interface for interacting with the OpenAI API, allowing you to easily use OpenAI's state-of-the-art machine learning models in your Rust projects.

Prerequisites

Before you can use the Rust Client for OpenAI, you'll need to sign up for an API key at the OpenAI Developer Portal. Once you've signed up, you'll be able to find your API key in the API Keys section of the developer portal.

Installation

To use the Rust Client for OpenAI in your project, add the following to your Cargo.toml file: toml [dependencies] fieri = "0.1"

Usage

To use the Rust Client for OpenAI, you'll first need to create a client object: ```rust use fieri::Client;

let client = Client::new(env::var("OPENAIAPIKEY")?); ```

Example

Generate an image based on a prompt and save it locally.

```rust use std::env; use fieri::{ Client, image::{ImageSize, GenerateImageParam, generate}, };

[tokio::main]

async fn main() -> Result<(), Box> { let client = Client::new(env::var("OPENAIAPIKEY")?);

let param = GenerateImageParam::new("A bunch of cats dancing tango on the top of the highest mountain in Mars.")
    .size(ImageSize::S1024x1024)
    .n(1);

let image = generate(&client, &param)
    .await?
    .save("/tmp/")
    .await?;

Ok(())

} ```

More examples can be found in the examples/ directory and the docs.

Documentation

Client Documentation

The official OpenAI docs

Limitations

Note that the Rust Client for OpenAI is provided as-is, and is not officially supported by OpenAI. While we will do our best to keep the library up-to-date and bug-free, we cannot guarantee that it will always work as expected.

Additionally, the API has usage limits that may affect your ability to use the models. You can view your current usage and limits in the Usage section of your account.

License

fieri is provided under the MIT license. See LICENSE.