File tree Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change 5
5
import asyncio
6
6
import os
7
7
from dotenv import load_dotenv
8
- import logging
9
8
from deepgram .utils import verboselogs
10
9
11
10
from deepgram import (
12
11
DeepgramClient ,
13
- PrerecordedOptions ,
14
12
DeepgramClientOptions
15
13
)
16
14
17
15
load_dotenv ()
18
16
19
- AUDIO_URL = {
20
- "url" : "https://static.deepgram.com/examples/Bueller-Life-moves-pretty-fast.wav"
21
- }
22
-
23
-
24
17
async def main ():
25
18
try :
26
19
# STEP 1 Create a Deepgram client using the DEEPGRAM_API_KEY from your environment variables
Original file line number Diff line number Diff line change 4
4
5
5
import os
6
6
from dotenv import load_dotenv
7
- import logging
8
7
from deepgram .utils import verboselogs
9
8
10
9
from deepgram import (
11
10
DeepgramClient ,
12
- PrerecordedOptions ,
13
11
DeepgramClientOptions
14
12
)
15
13
16
14
load_dotenv ()
17
15
18
- AUDIO_URL = {
19
- "url" : "https://static.deepgram.com/examples/Bueller-Life-moves-pretty-fast.wav"
20
- }
21
-
22
-
23
16
def main ():
24
17
try :
25
18
# STEP 1 Create a Deepgram client using the DEEPGRAM_API_KEY from your environment variables
You can’t perform that action at this time.
0 commit comments