UNPKG

@gguf/claw

Version:

WhatsApp gateway CLI (Baileys web) with Pi RPC agent

10 lines (8 loc) 268 B
import { escapeXml } from "../voice-mapping.js"; export function generateNotifyTwiml(message: string, voice: string): string { return `<?xml version="1.0" encoding="UTF-8"?> <Response> <Say voice="${voice}">${escapeXml(message)}</Say> <Hangup/> </Response>`; }