UNPKG
@gguf/claw
Version:
latest (2026.2.20)
2026.2.20
2026.2.16
2026.2.13
2026.2.9
2026.2.5
2026.2.4
2026.2.3
2026.2.2
2026.2.1
2026.1.30
WhatsApp gateway CLI (Baileys web) with Pi RPC agent
@gguf/claw
/
extensions
/
voice-call
/
src
/
manager
/
twiml.ts
10 lines
(8 loc)
•
268 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
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
>
`; }