openclaw/extensions/voice-call/src/manager/twiml.ts
2026-01-14 05:40:19 +00:00

11 lines
269 B
TypeScript

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>`;
}