@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.
Files changed (2) hide show
  1. package/README.md +25 -0
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drakulavich/parakeet-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Fast multilingual speech-to-text CLI powered by NVIDIA Parakeet ONNX models",
5
5
  "type": "module",
6
6
  "bin": {