How to make the agent talk faster?
# support
g
I English it`s ok but for other languages the pace is too slow. I don`t mean impprove it`s latency, but the actual speed the agent says the words.
c
Gabrela can you share the voiceId?
g
voice id 3z9q8Y7plHbvhDZehEII
call id 116192ba-290f-41d4-a053-402f5540b27f
c
Hey Gabriela, I just checked your call recording and voice config and voice is speaking at it's best speed. If you want to to increase the volume you have to use different voice with higher pitch.
g
the speed was the problem, not the voice volume. so fastest voice available for romanian is needed or a way to make it speek faster
c
To address the slow Romanian speech issue, here are the available solutions: ### 1. Switch to OpenAI Voice Provider (Best Option) OpenAI's voice provider offers the highest speed multiplier (up to 4x):
Copy code
{
  provider: 'openai',
  voiceId: 'alloy', // or any other OpenAI voice
  speed: 4.0 // Maximum speed
}
\### 2. Use RimeAI Voice Provider (Second Best Option) RimeAI has flexible speed settings with no upper limit:
Copy code
{
  provider: 'rime-ai',
  voiceId: 'abbie', // or any other RimeAI voice
  speed: 2.0 // or higher if needed
}
\### 3. Azure Romanian Voices (Current Option) Available Romanian voices: \- ro-RO-AlinaNeural (Female) \- ro-RO-AndreiNeural (Male) Maximum speed setting is 2.0x. \### Why These Are The Right Solutions 1\. OpenAI Provider (4x speed) - Highest speed multiplier (4x) - Professional quality voices - Stable performance 2\. RimeAI Provider (2x+ speed) - No upper speed limit - Lower minimum speed threshold - Good voice quality 3\. Azure Provider (Current, 2x speed) - Native Romanian support - Limited to 2x speed maximum - Neural voices for natural sound \### Implementation Steps
Copy code
// For OpenAI (Recommended)
const voiceConfig = {
  provider: 'openai',
  voiceId: 'alloy',
  speed: 4.0,
  language: 'ro-RO'
};

// For RimeAI (Alternative)
const voiceConfig = {
  provider: 'rime-ai',
  voiceId: 'abbie',
  speed: 2.0,
  language: 'ro-RO'
};
s
@Gabriela Macovei let me know how can I help you further.
g
thanks
12 Views