

Update README.md
@a3e22d569a39196ca160f1301fcbf2b69502de54
--- README.md
+++ README.md
... | ... | @@ -38,9 +38,9 @@ |
38 | 38 |
export OPENAI_BASE_URL=http://localhost:8000/v1/ |
39 | 39 |
``` |
40 | 40 |
```bash |
41 |
-openai api audio.transcriptions.create -m distil-medium.en -f audio.wav --response-format text |
|
41 |
+openai api audio.transcriptions.create -m distil-large-v3 -f audio.wav --response-format text |
|
42 | 42 |
|
43 |
-openai api audio.translations.create -m distil-medium.en -f audio.wav --response-format verbose_json |
|
43 |
+openai api audio.translations.create -m distil-large-v3 -f audio.wav --response-format verbose_json |
|
44 | 44 |
``` |
45 | 45 |
### OpenAI API Python SDK |
46 | 46 |
```python |
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 |
|
51 | 51 |
audio_file = open("audio.wav", "rb") |
52 | 52 |
transcript = client.audio.transcriptions.create( |
53 |
- model="distil-medium.en", file=audio_file |
|
53 |
+ model="distil-large-v3", file=audio_file |
|
54 | 54 |
) |
55 | 55 |
print(transcript.text) |
56 | 56 |
``` |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?