@humeai/cli 0.0.10 → 0.0.12
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 +5 -1
- package/dist/index.js +17662 -48100
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ This CLI uses Hume's [Typescript SDK](https://github.com/humeai/hume-typescript-
|
|
|
9
9
|
## Quickstart
|
|
10
10
|
|
|
11
11
|
```shell
|
|
12
|
-
npm install -g @humeai
|
|
12
|
+
npm install -g @humeai/cli
|
|
13
13
|
hume login
|
|
14
14
|
# Use the browser to login to platform.hume.ai to retrieve your
|
|
15
15
|
# API keys
|
|
@@ -61,6 +61,7 @@ $ hume tts <text>
|
|
|
61
61
|
--trailing-silence #0 Seconds of silence to add at the end (0.0-5.0, default is 0.35)
|
|
62
62
|
--streaming Use streaming mode for TTS generation (default: true)
|
|
63
63
|
--instant-mode Enable ultra-low latency mode for significantly faster generation (requires streaming=true, a voice, and incurs 10% higher cost)
|
|
64
|
+
--curl Generate curl command instead of making the API request
|
|
64
65
|
|
|
65
66
|
━━━ Details ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
66
67
|
|
|
@@ -110,6 +111,9 @@ $ hume tts "Hello world" -v narrator --instant-mode
|
|
|
110
111
|
Setting instant mode in your config (always enable)
|
|
111
112
|
$ hume config set tts.instantMode true
|
|
112
113
|
|
|
114
|
+
Generating curl command instead of making API request
|
|
115
|
+
$ hume tts "Hello world" -v narrator --curl
|
|
116
|
+
|
|
113
117
|
## Voice Management
|
|
114
118
|
|
|
115
119
|
Save a voice from a previous generation
|