Adopt Different Posture When Talking With Your Agent
Until now, Fine Voicing followed a standard posture when interacting with your voice agent, ensuring it stayed on the expected conversation path—maximizing its chances of success.
But real-world interactions aren’t always that simple. Sometimes, you need to test edge cases or even defend against malicious actors.
That’s why Fine Voicing now supports three postures:
✅ Baseline – The default mode. Fine Voicing will do everything possible to help your agent succeed.
🔶 Edge – Pushes the limits by introducing adjacent, more complex scenarios.
⚠️ Attacker – Simulates a malicious actor, attempting to make your agent leak sensitive information or exhaust resources. Use with caution, as this could impact production systems.
Additionally, you can define a customPosture to shape Fine Voicing’s behavior with specific personality traits.
Ready to explore these new postures? Log in to your account and start making API calls today!
curl -X POST "https://api.finevoicing.com/v0.1/outbound-call" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"testedAgent": {
"phoneNumber": "+351962171950",
"instructions": "You are working at real-estate agency and you are attending calls from people interested in renting a property. You are to help the agency to collect informations about the caller to be later processed by a human working at the agency. Be very polite and professional, and greet the caller."
},
"finevoicingAgent": {
"posture": "edge"
}
}'