Closed
Description
Confirm this is an issue with the Python library and not an underlying OpenAI API
- This is an issue with the Python library
Describe the bug
When following the documentation on how to use client.audio.speech.create()
, the returned response has a method called stream_to_file(file_path)
which explains that when used, it should stream the content of the audio file as it's being created. This does not seem to work. I've used a rather large text input that generates a 3.5 minute sound file and the file is only created once the whole request is completed.
To Reproduce
Utilize the following code and replace the text input with a decently large amount of text.
from pathlib import Path
from openai import OpenAI
client = OpenAI()
speech_file_path = Path(__file__).parent / "speech.mp3"
response = client.audio.speech.create(
model="tts-1",
voice="alloy",
input="""
<Decently large bit of text here>
"""
)
response.stream_to_file(speech_file_path)
Notice that when the script is run that the speech.mp3
file is only ever created after the request is fully completed.
Code snippets
No response
OS
macOS
Python version
Python 3.11.6
Library version
openai v1.2.4