// SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 // // Based on https://github.com/64bit/async-openai/ by Himanshu Neema // Original Copyright (c) 2022 Himanshu Neema // Licensed under MIT License (see ATTRIBUTIONS-Rust.md) // // Modifications Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. // Licensed under Apache 2.0 use dynamo_async_openai::types::CreateTranslationRequestArgs; use dynamo_async_openai::{Client, types::CreateTranscriptionRequestArgs}; use tokio_test::assert_err; #[tokio::test] async fn transcribe_test() { let client = Client::new(); let request = CreateTranscriptionRequestArgs::default().build().unwrap(); let response = client.audio().transcribe(request).await; assert_err!(response); // FileReadError("cannot extract file name from ") } #[tokio::test] async fn transcribe_sendable_test() { let client = Client::new(); // https://github.com/64bit/async-openai/issues/140 let transcribe = tokio::spawn(async move { let request = CreateTranscriptionRequestArgs::default().build().unwrap(); client.audio().transcribe(request).await }); let response = transcribe.await.unwrap(); assert_err!(response); // FileReadError("cannot extract file name from ") } #[tokio::test] async fn translate_test() { let client = Client::new(); let request = CreateTranslationRequestArgs::default().build().unwrap(); let response = client.audio().translate(request).await; assert_err!(response); // FileReadError("cannot extract file name from ") } #[tokio::test] async fn translate_sendable_test() { let client = Client::new(); // https://github.com/64bit/async-openai/issues/140 let translate = tokio::spawn(async move { let request = CreateTranslationRequestArgs::default().build().unwrap(); client.audio().translate(request).await }); let response = translate.await.unwrap(); assert_err!(response); // FileReadError("cannot extract file name from ") }