OAI_RS

Cargo oai<em>rs GitHub issues docs.rs oai</em>rs

An async rust library that's a wrapper for the OpenAI API.

💫 Features

Handles some of the following endpoints of the API:

🚀 Getting Started

Simply add oai_rs = "0.1.2" to your cargo.toml file. The API key should be provided as an enivormental variable using OPENAI_API_KEY.

📚 Examples

Simple example to complete a prompt string.

```rust use oai_rs::{completions, models};

async { let completions = completions::build(models::CompletionModels::TEXTDAVINCI003) .prompt("Ice cream or cookies?") .max_tokens(32) .complete() .await;

    println!("{:?}", completions);

}; ```