@drakulavich/parakeet-cli 0.1.1 → 0.1.2
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 +25 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -108,6 +108,31 @@ curl -fsSL https://bun.sh/install | bash
|
|
|
108
108
|
bun install -g @drakulavich/parakeet-cli
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
+
## OpenClaw Integration
|
|
112
|
+
|
|
113
|
+
To use parakeet as the voice transcription engine in [OpenClaw](https://docs.openclaw.ai), update `~/.openclaw/openclaw.json`:
|
|
114
|
+
|
|
115
|
+
```json
|
|
116
|
+
"tools": {
|
|
117
|
+
"media": {
|
|
118
|
+
"audio": {
|
|
119
|
+
"enabled": true,
|
|
120
|
+
"models": [
|
|
121
|
+
{
|
|
122
|
+
"type": "cli",
|
|
123
|
+
"command": "parakeet",
|
|
124
|
+
"args": ["{{MediaPath}}"],
|
|
125
|
+
"timeoutSeconds": 120
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"echoTranscript": false
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Then restart the gateway: `openclaw gateway restart`
|
|
135
|
+
|
|
111
136
|
## License
|
|
112
137
|
|
|
113
138
|
MIT
|