Update README.md
Browse files
README.md
CHANGED
@@ -24,7 +24,7 @@ Kitten TTS is an open-source realistic text-to-speech model with just 15 million
|
|
24 |
### Installation
|
25 |
|
26 |
```
|
27 |
-
pip install
|
28 |
```
|
29 |
|
30 |
|
@@ -32,8 +32,8 @@ pip install kitten-tts
|
|
32 |
### Basic Usage
|
33 |
|
34 |
```
|
35 |
-
from kittentts import
|
36 |
-
m =
|
37 |
|
38 |
audio = m.generate("This high quality TTS model works without a GPU")
|
39 |
|
|
|
24 |
### Installation
|
25 |
|
26 |
```
|
27 |
+
pip install kittentts
|
28 |
```
|
29 |
|
30 |
|
|
|
32 |
### Basic Usage
|
33 |
|
34 |
```
|
35 |
+
from kittentts import KittenTTS
|
36 |
+
m = KittenTTS("kittenml/kitten-tts-nano-preview")
|
37 |
|
38 |
audio = m.generate("This high quality TTS model works without a GPU")
|
39 |
|