From b94123ce72e2ca48041644080bd1c897766c05c7 Mon Sep 17 00:00:00 2001 From: Himanshu Neema Date: Fri, 10 Jan 2025 15:48:02 -0800 Subject: [PATCH 1/3] updated crate dependencies --- async-openai/Cargo.toml | 24 +++++++++---------- .../src/types/realtime/client_event.rs | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/async-openai/Cargo.toml b/async-openai/Cargo.toml index 248e5e2d..8a187d3b 100644 --- a/async-openai/Cargo.toml +++ b/async-openai/Cargo.toml @@ -27,27 +27,27 @@ realtime = ["dep:tokio-tungstenite"] [dependencies] backoff = { version = "0.4.0", features = ["tokio"] } base64 = "0.22.1" -futures = "0.3.30" +futures = "0.3.31" rand = "0.8.5" -reqwest = { version = "0.12.4", features = [ +reqwest = { version = "0.12.12", features = [ "json", "stream", "multipart", ], default-features = false } reqwest-eventsource = "0.6.0" -serde = { version = "1.0.203", features = ["derive", "rc"] } -serde_json = "1.0.117" -thiserror = "1.0.61" -tokio = { version = "1.38.0", features = ["fs", "macros"] } -tokio-stream = "0.1.15" -tokio-util = { version = "0.7.11", features = ["codec", "io-util"] } -tracing = "0.1.40" -derive_builder = "0.20.0" +serde = { version = "1.0.217", features = ["derive", "rc"] } +serde_json = "1.0.135" +thiserror = "2.0.11" +tokio = { version = "1.43.0", features = ["fs", "macros"] } +tokio-stream = "0.1.17" +tokio-util = { version = "0.7.13", features = ["codec", "io-util"] } +tracing = "0.1.41" +derive_builder = "0.20.2" async-convert = "1.0.0" secrecy = { version = "0.10.3", features = ["serde"] } -bytes = "1.6.0" +bytes = "1.9.0" eventsource-stream = "0.2.3" -tokio-tungstenite = { version = "0.24.0", optional = true, default-features = false } +tokio-tungstenite = { version = "0.26.1", optional = true, default-features = false } [dev-dependencies] tokio-test = "0.4.4" diff --git a/async-openai/src/types/realtime/client_event.rs b/async-openai/src/types/realtime/client_event.rs index d5ec24d2..87ff7010 100644 --- a/async-openai/src/types/realtime/client_event.rs +++ b/async-openai/src/types/realtime/client_event.rs @@ -61,7 +61,7 @@ pub struct ConversationItemTruncateEvent { /// The index of the content part to truncate. pub content_index: u32, - /// Inclusive duration up to which audio is truncated, in milliseconds. + /// Inclusive duration up to which audio is truncated, in milliseconds. pub audio_end_ms: u32, } @@ -141,7 +141,7 @@ impl From<&ClientEvent> for String { impl From for Message { fn from(value: ClientEvent) -> Self { - Message::Text(String::from(&value)) + Message::Text(String::from(&value).into()) } } From ac25ba98fc77c8822507b350814e58d838a66a48 Mon Sep 17 00:00:00 2001 From: Himanshu Neema Date: Fri, 10 Jan 2025 15:48:15 -0800 Subject: [PATCH 2/3] updated dependencies of all examples --- examples/assistants-code-interpreter/Cargo.toml | 4 ++-- examples/assistants-file-search/Cargo.toml | 2 +- examples/assistants-func-call-stream/Cargo.toml | 8 ++++---- examples/assistants/Cargo.toml | 4 ++-- examples/audio-speech/Cargo.toml | 2 +- examples/audio-transcribe/Cargo.toml | 2 +- examples/audio-translate/Cargo.toml | 2 +- examples/azure-openai-service/Cargo.toml | 4 ++-- examples/chat-store/Cargo.toml | 4 ++-- examples/chat-stream/Cargo.toml | 4 ++-- examples/chat/Cargo.toml | 4 ++-- examples/completions-stream/Cargo.toml | 2 +- examples/completions/Cargo.toml | 2 +- examples/create-image-b64-json/Cargo.toml | 2 +- examples/create-image-edit/Cargo.toml | 2 +- examples/create-image-variation/Cargo.toml | 2 +- examples/create-image/Cargo.toml | 2 +- examples/embeddings/Cargo.toml | 2 +- examples/function-call-stream/Cargo.toml | 6 +++--- examples/function-call/Cargo.toml | 6 +++--- examples/in-memory-file/Cargo.toml | 4 ++-- examples/models/Cargo.toml | 2 +- examples/moderations/Cargo.toml | 2 +- examples/realtime/Cargo.toml | 8 ++++---- examples/structured-outputs/Cargo.toml | 4 ++-- examples/tool-call-stream/Cargo.toml | 6 +++--- examples/tool-call/Cargo.toml | 6 +++--- examples/vision-chat/Cargo.toml | 4 ++-- 28 files changed, 51 insertions(+), 51 deletions(-) diff --git a/examples/assistants-code-interpreter/Cargo.toml b/examples/assistants-code-interpreter/Cargo.toml index c3f7bd73..c53112ae 100644 --- a/examples/assistants-code-interpreter/Cargo.toml +++ b/examples/assistants-code-interpreter/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = { path = "../../async-openai" } -tokio = { version = "1.38.0", features = ["full"] } -tracing-subscriber = { version = "0.3.18", features = ["env-filter"]} +tokio = { version = "1.43.0", features = ["full"] } +tracing-subscriber = { version = "0.3.19", features = ["env-filter"]} diff --git a/examples/assistants-file-search/Cargo.toml b/examples/assistants-file-search/Cargo.toml index 54f241cf..7c94c891 100644 --- a/examples/assistants-file-search/Cargo.toml +++ b/examples/assistants-file-search/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = { path = "../../async-openai" } -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/assistants-func-call-stream/Cargo.toml b/examples/assistants-func-call-stream/Cargo.toml index 8a81726a..6f123dd8 100644 --- a/examples/assistants-func-call-stream/Cargo.toml +++ b/examples/assistants-func-call-stream/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] async-openai = { path = "../../async-openai" } -tokio = { version = "1.38.0", features = ["full"] } -serde_json = "1.0.117" -futures = "0.3.30" -tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } +tokio = { version = "1.43.0", features = ["full"] } +serde_json = "1.0.135" +futures = "0.3.31" +tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } diff --git a/examples/assistants/Cargo.toml b/examples/assistants/Cargo.toml index f4c34b83..d7595fd4 100644 --- a/examples/assistants/Cargo.toml +++ b/examples/assistants/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } -tracing-subscriber = { version = "0.3.18", features = ["env-filter"]} +tokio = { version = "1.43.0", features = ["full"] } +tracing-subscriber = { version = "0.3.19", features = ["env-filter"]} diff --git a/examples/audio-speech/Cargo.toml b/examples/audio-speech/Cargo.toml index cca6550a..32c19367 100644 --- a/examples/audio-speech/Cargo.toml +++ b/examples/audio-speech/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/audio-transcribe/Cargo.toml b/examples/audio-transcribe/Cargo.toml index 4438cda4..e5112626 100644 --- a/examples/audio-transcribe/Cargo.toml +++ b/examples/audio-transcribe/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/audio-translate/Cargo.toml b/examples/audio-translate/Cargo.toml index dcc980b5..ba64e89a 100644 --- a/examples/audio-translate/Cargo.toml +++ b/examples/audio-translate/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/azure-openai-service/Cargo.toml b/examples/azure-openai-service/Cargo.toml index e23dda74..ec8f0b41 100644 --- a/examples/azure-openai-service/Cargo.toml +++ b/examples/azure-openai-service/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } -futures = "0.3.30" +tokio = { version = "1.43.0", features = ["full"] } +futures = "0.3.31" diff --git a/examples/chat-store/Cargo.toml b/examples/chat-store/Cargo.toml index 3576f03d..0bf77f5f 100644 --- a/examples/chat-store/Cargo.toml +++ b/examples/chat-store/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -serde_json = "1.0.117" -tokio = { version = "1.38.0", features = ["full"] } +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/chat-stream/Cargo.toml b/examples/chat-stream/Cargo.toml index 2e5cc3d1..85b4cf43 100644 --- a/examples/chat-stream/Cargo.toml +++ b/examples/chat-stream/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } -futures = "0.3.30" +tokio = { version = "1.43.0", features = ["full"] } +futures = "0.3.31" diff --git a/examples/chat/Cargo.toml b/examples/chat/Cargo.toml index ebb1aefe..b7251e36 100644 --- a/examples/chat/Cargo.toml +++ b/examples/chat/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -serde_json = "1.0.117" -tokio = { version = "1.38.0", features = ["full"] } +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/completions-stream/Cargo.toml b/examples/completions-stream/Cargo.toml index 3e194896..fd6d5e59 100644 --- a/examples/completions-stream/Cargo.toml +++ b/examples/completions-stream/Cargo.toml @@ -7,4 +7,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} futures = "0.3.30" -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/completions/Cargo.toml b/examples/completions/Cargo.toml index 8703e8a6..0574060f 100644 --- a/examples/completions/Cargo.toml +++ b/examples/completions/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/create-image-b64-json/Cargo.toml b/examples/create-image-b64-json/Cargo.toml index 2bcc5fb2..4d5e1c94 100644 --- a/examples/create-image-b64-json/Cargo.toml +++ b/examples/create-image-b64-json/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/create-image-edit/Cargo.toml b/examples/create-image-edit/Cargo.toml index fcea14ab..a18f6dd1 100644 --- a/examples/create-image-edit/Cargo.toml +++ b/examples/create-image-edit/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/create-image-variation/Cargo.toml b/examples/create-image-variation/Cargo.toml index 957a97dd..12de47cb 100644 --- a/examples/create-image-variation/Cargo.toml +++ b/examples/create-image-variation/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/create-image/Cargo.toml b/examples/create-image/Cargo.toml index f06feb3f..4c48adac 100644 --- a/examples/create-image/Cargo.toml +++ b/examples/create-image/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/embeddings/Cargo.toml b/examples/embeddings/Cargo.toml index a5559e80..49855f24 100644 --- a/examples/embeddings/Cargo.toml +++ b/examples/embeddings/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/function-call-stream/Cargo.toml b/examples/function-call-stream/Cargo.toml index 7d020f18..00153331 100644 --- a/examples/function-call-stream/Cargo.toml +++ b/examples/function-call-stream/Cargo.toml @@ -8,6 +8,6 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -serde_json = "1.0.117" -tokio = { version = "1.38.0", features = ["full"] } -futures = "0.3.30" +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } +futures = "0.3.31" diff --git a/examples/function-call/Cargo.toml b/examples/function-call/Cargo.toml index bfbcb4f2..c1ff6094 100644 --- a/examples/function-call/Cargo.toml +++ b/examples/function-call/Cargo.toml @@ -8,6 +8,6 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -serde_json = "1.0.117" -tokio = { version = "1.38.0", features = ["full"] } -tracing-subscriber = { version = "0.3.18", features = ["env-filter"]} +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } +tracing-subscriber = { version = "0.3.19", features = ["env-filter"]} diff --git a/examples/in-memory-file/Cargo.toml b/examples/in-memory-file/Cargo.toml index 2afd6b2f..1d5c4458 100644 --- a/examples/in-memory-file/Cargo.toml +++ b/examples/in-memory-file/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } -bytes = "1.6.0" +tokio = { version = "1.43.0", features = ["full"] } +bytes = "1.9.0" diff --git a/examples/models/Cargo.toml b/examples/models/Cargo.toml index 8960fe0c..bc38c36f 100644 --- a/examples/models/Cargo.toml +++ b/examples/models/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/moderations/Cargo.toml b/examples/moderations/Cargo.toml index 6cfb290c..12cf62eb 100644 --- a/examples/moderations/Cargo.toml +++ b/examples/moderations/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] async-openai = { path = "../../async-openai" } -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/realtime/Cargo.toml b/examples/realtime/Cargo.toml index 4f9d9786..6e28678e 100644 --- a/examples/realtime/Cargo.toml +++ b/examples/realtime/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" async-openai = { path = "../../async-openai", features = ["realtime"] } futures-channel = "0.3.31" futures-util = { version = "0.3.31", features = ["sink", "std"] } -serde = { version = "1.0.210", features = ["derive"] } -serde_json = "1.0.128" -tokio = { version = "1.40.0", features = [ +serde = { version = "1.0.217", features = ["derive"] } +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = [ "io-std", "io-util", "macros", "rt-multi-thread", ] } -tokio-tungstenite = { version = "0.24.0", features = ["connect", "native-tls"] } +tokio-tungstenite = { version = "0.26.1", features = ["connect", "native-tls"] } diff --git a/examples/structured-outputs/Cargo.toml b/examples/structured-outputs/Cargo.toml index 849098e4..0005568b 100644 --- a/examples/structured-outputs/Cargo.toml +++ b/examples/structured-outputs/Cargo.toml @@ -6,5 +6,5 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} -serde_json = "1.0.127" -tokio = { version = "1.39.3", features = ["full"] } +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } diff --git a/examples/tool-call-stream/Cargo.toml b/examples/tool-call-stream/Cargo.toml index 03dec8c7..6d68ba36 100644 --- a/examples/tool-call-stream/Cargo.toml +++ b/examples/tool-call-stream/Cargo.toml @@ -9,6 +9,6 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} rand = "0.8.5" -serde_json = "1.0.117" -tokio = { version = "1.38.0", features = ["full"] } -futures = "0.3.30" +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } +futures = "0.3.31" diff --git a/examples/tool-call/Cargo.toml b/examples/tool-call/Cargo.toml index 527b4f45..e6a2dc63 100644 --- a/examples/tool-call/Cargo.toml +++ b/examples/tool-call/Cargo.toml @@ -9,6 +9,6 @@ publish = false [dependencies] async-openai = {path = "../../async-openai"} rand = "0.8.5" -serde_json = "1.0.117" -tokio = { version = "1.38.0", features = ["full"] } -futures = "0.3.30" +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } +futures = "0.3.31" diff --git a/examples/vision-chat/Cargo.toml b/examples/vision-chat/Cargo.toml index 4174d065..ccf95cd0 100644 --- a/examples/vision-chat/Cargo.toml +++ b/examples/vision-chat/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] async-openai = { path = "../../async-openai" } -serde_json = "1.0.117" -tokio = { version = "1.38.0", features = ["full"] } +serde_json = "1.0.135" +tokio = { version = "1.43.0", features = ["full"] } From 5f67194347ab205ed43240dfaa03299f131c0920 Mon Sep 17 00:00:00 2001 From: Himanshu Neema Date: Fri, 10 Jan 2025 16:05:18 -0800 Subject: [PATCH 3/3] fix assistants-file-search example --- examples/assistants-file-search/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/assistants-file-search/src/main.rs b/examples/assistants-file-search/src/main.rs index aca9731e..11770d6b 100644 --- a/examples/assistants-file-search/src/main.rs +++ b/examples/assistants-file-search/src/main.rs @@ -83,7 +83,7 @@ async fn main() -> Result<(), Box> { .files() .create(CreateFileRequest { file: "./input/lyft-10k.pdf".into(), - ..Default::default() + purpose: FilePurpose::Assistants, }) .await?;