lets talk about dogs

This commit is contained in:
Chad Bailey
2025-03-20 01:20:07 +00:00
committed by Paul Kompfner
parent 0d74bcacb7
commit 2ae5bdd8a9

View File

@@ -52,7 +52,9 @@ async def main():
# model="whisper-large-v3", # model="whisper-large-v3",
# ) # )
stt = OpenAISTTService( stt = OpenAISTTService(
api_key=os.getenv("OPENAI_API_KEY"), model="gpt-4o-transcribe-latest" api_key=os.getenv("OPENAI_API_KEY"),
model="gpt-4o-transcribe-latest",
prompt="Expect words related to dogs, such as breed names.",
) )
tts = OpenAITTSService(api_key=os.getenv("OPENAI_API_KEY"), model="gpt-4o-mini-tts-latest") tts = OpenAITTSService(api_key=os.getenv("OPENAI_API_KEY"), model="gpt-4o-mini-tts-latest")
@@ -62,7 +64,7 @@ async def main():
messages = [ messages = [
{ {
"role": "system", "role": "system",
"content": "You are a helpful LLM in a WebRTC call. Your goal is to demonstrate your capabilities in a succinct way. Your output will be converted to audio so don't include special characters in your answers. Respond to what the user said in a creative and helpful way.", "content": "You are very knowledgable about dogs. Your output will be converted to audio so don't include special characters in your answers. Respond to what the user said in a creative and helpful way.",
}, },
] ]