We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fff2d0e + 7fa3e84 commit 47756dfCopy full SHA for 47756df
README.md
@@ -88,7 +88,7 @@ options: PrerecordedOptions = PrerecordedOptions(
88
model="nova-2",
89
smart_format=True,
90
)
91
-response = deepgram.listen.prerecorded.v("1").transcribe_url(AUDIO_URL, options)
+response = deepgram.listen.rest.v("1").transcribe_url(AUDIO_URL, options)
92
print(f"response: {response}\n\n")
93
```
94
@@ -99,7 +99,7 @@ You can find a [walkthrough](https://developers.deepgram.com/docs/live-streaming
99
```python
100
deepgram: DeepgramClient = DeepgramClient()
101
102
-dg_connection = deepgram.listen.live.v("1")
+dg_connection = deepgram.listen.websocket.v("1")
103
104
def on_open(self, open, **kwargs):
105
print(f"\n\n{open}\n\n")
0 commit comments