nandovallec commited on
Commit
0188bfa
·
1 Parent(s): 7d0eeb6
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ import asyncio
11
  import os
12
  os.environ.getattribute("API_TOKEN")
13
  pipe = pipeline(model="nandovallec/whisper-tiny-bg-l") # change to "your-username/the-name-you-picked"
14
- gmaps_api_key = os.environ.getattribute("GMAPS_API")
15
- transl_api_key= os.environ.getattribute("TRANS_API")
16
  # gmaps.configure(api_key=gmaps_api_key)
17
  # mode = "walking"
18
 
 
11
  import os
12
  os.environ.getattribute("API_TOKEN")
13
  pipe = pipeline(model="nandovallec/whisper-tiny-bg-l") # change to "your-username/the-name-you-picked"
14
+ gmaps_api_key = os.environ["GMAPS_API"]
15
+ transl_api_key= os.environ["TRANS_API"]
16
  # gmaps.configure(api_key=gmaps_api_key)
17
  # mode = "walking"
18