File size: 495 Bytes
993fe8a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from pathlib import Path
from openai import OpenAI
import bridges
client = OpenAI(api_key=bridges.llave) #Usa Buzzword (buzz) o Moibe (llave).
speech_file_path = Path(__file__).parent / "speech.mp3"
with client.audio.speech.with_streaming_response.create(
model="gpt-4o-mini-tts",
voice="coral",
input="Today is a wonderful day to build something people love!",
instructions="Speak in a cheerful and positive tone.",
) as response:
response.stream_to_file(speech_file_path) |