claude-phone-local 2.0.13 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-phone-local",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "Local/offline fork of NetworkChuck's claude-phone: talk to Claude Code over 3CX/SIP with faster-whisper STT + Piper TTS in one Docker container.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -77,6 +77,10 @@ function getRandomThinkingPhrase() {
|
|
|
77
77
|
return THINKING_PHRASES[Math.floor(Math.random() * THINKING_PHRASES.length)];
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
+
function getRandomWaitingPhrase() {
|
|
81
|
+
return WAITING_PHRASES[Math.floor(Math.random() * WAITING_PHRASES.length)];
|
|
82
|
+
}
|
|
83
|
+
|
|
80
84
|
function extractCallerId(req) {
|
|
81
85
|
var from = req.get("From") || "";
|
|
82
86
|
var match = from.match(/sip:([+\d]+)@/);
|