curl -X POST https://api.thinnest.ai/v1/agents \
-H "Authorization: Bearer $THINNESTAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Secure Banking Agent",
"model": "gpt-4o",
"instructions": "You are a secure banking agent. Before accessing any account information, verify the caller identity using voice biometrics. Ask them to say the enrollment phrase.",
"voiceEnabled": true,
"transcriber": { "provider": "deepgram", "model": "nova-2-conversationalai" },
"voice": { "provider": "deepgram", "voiceId": "aura-2-thalia-en" },
"voiceBiometricsEnabled": true,
"voiceBiometricsProvider": "internal",
"voiceBiometricsAction": "verify",
"voiceBiometricsEnrollPhrase": "My voice is my password",
"voiceBiometricsConfidenceThreshold": 0.7,
"voiceBiometricsFailAction": "transfer",
"voiceBiometricsTransferTarget": "+14155551234"
}'