# OpenAI API for Rust



A community-maintained library provides a simple and convenient way to interact with the OpenAI API.
No complex async and redundant dependencies.
## API
check [official API reference](https://platform.openai.com/docs/api-reference)
|Models|✔️|
|Completions|✔️|
|Chat|✔️|
|Edits|✔️|
|Images|✔️|
|Embeddings|✔️|
|Audio|✔️|
|Files|❌|
|Fine-tunes|❌|
|Moderations|❌|
|Engines|❌|
___
## Usage
Add the following to your Cargo.toml file:
```toml
openai_api_rust = "0.1.1"
```
Export your API key into the environment variables
```bash
export OPENAI_API_KEY=<your_api_key>
```
Then use the crate in your Rust code:
```rust
use openai_api_rust::*;
use openai_api_rust::edits::*;
fn main() {
// Load API key from environment OPENAI_API_KEY.
// You can also hadcode through `Auth::new(<your_api_key>)`, but it is not recommended.
let auth = Auth::from_env().unwrap();
let openai = OpenAI::new(auth, "https://api.openai.com/v1/");
let body = EditsBody {
model: "text-davinci-edit-001".to_string(),
temperature: None,
top_p: None,
n: Some(2),
instruction: "Fix the spelling mistakes".to_string(),
input: Some("What day of the wek is it?".to_string()),
};
let rs = openai.edit_create(&body).unwrap();
let choice = rs.choices.get(0).unwrap();
println!("choice: {:?}", choice.text);
}
```
Output:
```bash
choice: Some("What day of the week is it?\n")
```
### Use proxy
Load proxy from env
```rust
let openai = OpenAI::new(auth, "https://api.openai.com/v1/")
.use_env_proxy()
.unwrap();
```
Set the proxy manually
```rust
let openai = OpenAI::new(auth, "https://api.openai.com/v1/")
.set_proxy("http://127.0.0.1:1080");
```
## License
This library is distributed under the terms of the MIT license. See [LICENSE](LICENSE) for details.