Skip to content

Commit df95319

Browse files
committed
v8.0.1
1 parent 149dce8 commit df95319

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openai-api-rs"
3-
version = "8.0.0"
3+
version = "8.0.1"
44
edition = "2021"
55
authors = ["Dongri Jin <[email protected]>"]
66
license = "MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Cargo.toml
1010

1111
```toml
1212
[dependencies]
13-
openai-api-rs = "8.0.0"
13+
openai-api-rs = "8.0.1"
1414
```
1515

1616
## Usage

examples/responses.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
1111

1212
let mut req = CreateResponseRequest::new();
1313
req.model = Some(GPT4_1_MINI.to_string());
14-
req.input = Some(json!("Write a haiku about Rust."));
14+
req.input = Some(json!("Tell me a three sentence bedtime story about a unicorn."));
1515
req.extra.insert("temperature".to_string(), json!(0.7));
1616

1717
let resp = client.create_response(req).await?;

0 commit comments

Comments
 (0)