voicecc 1.1.32 → 1.1.34
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/README.md +3 -16
- package/dashboard/dist/assets/index-C24ZUOHC.js +15 -0
- package/dashboard/dist/index.html +1 -1
- package/dashboard/routes/chat.ts +130 -0
- package/dashboard/server.ts +2 -0
- package/init/defaults/system-text-overlay.md +1 -0
- package/init/defaults/system-voice-overlay.md +1 -0
- package/init/defaults/system.md +2 -2
- package/package.json +2 -1
- package/server/services/heartbeat.ts +3 -11
- package/server/voice/browser-server.ts +4 -16
- package/server/voice/chat-server.ts +215 -0
- package/server/voice/claude-session.ts +2 -12
- package/server/voice/prompt-builder.ts +108 -0
- package/server/voice/twilio-server.ts +5 -16
- package/dashboard/dist/assets/index-CRYm6w4G.js +0 -11
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# VoiceCC
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/voicecc)
|
|
4
4
|
[](https://www.npmjs.com/package/voicecc)
|
|
@@ -19,7 +19,7 @@ init/ Default prompt templates for new agents
|
|
|
19
19
|
bin/ CLI entry point (voicecc command)
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
##
|
|
22
|
+
## Install
|
|
23
23
|
|
|
24
24
|
### Prerequisites
|
|
25
25
|
|
|
@@ -27,7 +27,7 @@ bin/ CLI entry point (voicecc command)
|
|
|
27
27
|
- Node.js 18+
|
|
28
28
|
- An ElevenLabs API key
|
|
29
29
|
|
|
30
|
-
###
|
|
30
|
+
### Terminal
|
|
31
31
|
|
|
32
32
|
Sets up Cloudflared Quicktunnel (optional), protects installation with password (optional), and sets up your Elevenlabs API key.
|
|
33
33
|
|
|
@@ -39,19 +39,6 @@ npm install -g voicecc
|
|
|
39
39
|
voicecc
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
## Development
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
# 1. Install dependencies
|
|
46
|
-
npm install
|
|
47
|
-
|
|
48
|
-
# 2. Start the backend server
|
|
49
|
-
npm start
|
|
50
|
-
|
|
51
|
-
# 3. In a separate terminal, start the dashboard with hot reload
|
|
52
|
-
npm run dev:dashboard
|
|
53
|
-
```
|
|
54
|
-
|
|
55
42
|
## How It Works
|
|
56
43
|
|
|
57
44
|
1. **Mic capture**: Browser captures 16kHz mono PCM via WebRTC
|