From ade2d5d8bc90eaf2cbb49a23e75230477951b252 Mon Sep 17 00:00:00 2001 From: localadministrator Date: Mon, 13 Apr 2026 06:17:39 +0000 Subject: [PATCH] Update voiceai-server.js --- voiceai-server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voiceai-server.js b/voiceai-server.js index 0ecbdf1..3c7c100 100644 --- a/voiceai-server.js +++ b/voiceai-server.js @@ -97,7 +97,7 @@ app.post('/pinkpulse', async (req, res) => { conversations[sid] = { department: null, history: [], callerNumber: req.body.From }; console.log('Pink Pulse call from', req.body.From, sid); - const greetingText = "Hey gorgeous! Thanks for calling The Pink Pulse, where your world gets gayed up! I'm Brian, your fabulous AI assistant. Press 1 for Advertising and Sponsorships. Press 2 for Editorial and Story Tips. Press 3 for Events and Partnerships. Press 4 for General Inquiries. Or stay on the line and I'll connect you with our team!"; + const greetingText = "Thanks for calling The Pink Pulse, covering over 138 gay communities worldwide! I'm Brian, your fabulous AI assistant. Press 1 for Advertising and Sponsorships. Press 2 for Editorial and Story Tips. Press 3 for Events and Partnerships. Press 4 for General Inquiries. Or stay on the line and I'll connect you with our team!"; let audioUrl = await generateElevenLabsAudio(greetingText, BRIAN_VOICE_ID, 'pp_greeting'); @@ -184,7 +184,7 @@ app.post('/pinkpulse/message', async (req, res) => { sess.history = []; conversations[sid] = sess; - const messageText = "Hey darling! Our team isn't available right now, but I'm Brian and I'll make sure your message gets to the right fabulous person! Can I start with your name?"; + const messageText = "Unfortunately, our team isn't available right this moment, but I'll make sure your message gets to someone within minutes! Can I start with your name?"; let audioUrl = await generateElevenLabsAudio(messageText, BRIAN_VOICE_ID, 'pp_afterhours'); const t = new twilio.twiml.VoiceResponse();