OpenAI TTS
This commit is contained in:
parent
b4e8cfc6ab
commit
927fba85a6
|
@ -76,7 +76,8 @@ async def entrypoint(ctx: JobContext):
|
||||||
vad=silero.VAD.load(), # Voice Activity Detection
|
vad=silero.VAD.load(), # Voice Activity Detection
|
||||||
stt=deepgram.STT(), # Speech-to-Text
|
stt=deepgram.STT(), # Speech-to-Text
|
||||||
llm=open_interpreter, # Language Model
|
llm=open_interpreter, # Language Model
|
||||||
tts=elevenlabs.TTS(), # Text-to-Speech
|
# tts=elevenlabs.TTS(), # Text-to-Speech
|
||||||
|
tts=openai.TTS(), # Text-to-Speech
|
||||||
chat_ctx=initial_ctx, # Chat history context
|
chat_ctx=initial_ctx, # Chat history context
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue