#how to change the speed of the voice?

1 messages · Page 1 of 1 (latest)

mental drift
#

im currently using the follow set up in my deepgram exploration (see below) . I found that when deepgram is readout the single words with comma such as (apple, orange, peach, etc) there is no "pause" between the words, it read/speak through it just like there are no comma in between. is there a way or setting I can tweek to allow the agent to have a bit more clear flow in reading through a sentence when the sentence has punctuations?

deepgram_config = {
        "type": "Settings",
        "audio": {
            "input": {
                "encoding": "mulaw",
                "sample_rate": 8000,
            },
            "output": {
                "encoding": "mulaw",
                "sample_rate": 8000,
                "container": "none", # This field is valid for V1
            }
        },
        "agent": {
            "listen": {
                "provider": {
                    "type": "deepgram"
                }
            },
            "think": {
                "provider": { 
                    "type": "open_ai",
                    "model": "gpt-4o-mini" 
                },
                "prompt": enhanced_system_message, # Changed from "instructions" to "prompt" per V1 guide
                "functions": all_english_function_definitions
            },
            "speak": {
                "provider": {
                    "type": "deepgram", 
                    "model": "aura-asteria-en" 
                }
            }
        }
    }
tame vaporBOT
#

Thanks for asking your question. Please be sure to reply with as much detail as possible so the community can assist you efficiently.
-# If you haven't done so, ensure your Discord and Github profiles are linked to Deepgram so you can earn points to redeem on cool stuff just by being active!

#

It looks like we're missing some important information to help debug your issue. Would you mind providing us with the following details in a reply?

  • The deepgram product you are using (e.g Speech to Text, Agent API)
  • A request ID that triggered your error or issue.
mental drift
#

@tame vapor We are using Voice Agent API. I don't think we have request ID in the API. if there is one, could you please help me find it?