stellon-admin commited on
Commit
3dd2adb
·
verified ·
1 Parent(s): 867616b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
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 kitten-tts
28
  ```
29
 
30
 
@@ -32,8 +32,8 @@ pip install kitten-tts
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
 
 
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