aar2dee2 commited on
Commit
55cb018
·
1 Parent(s): 5a1ed1a

fetch env var correctly

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -113,7 +113,7 @@ def main(input_audio):
113
 
114
  # Initialize CoquiSynthesizer
115
  synthesizer = CoquiSynthesizer(
116
- voice_id=os.getenv("COQUI_VOICE_ID"),
117
  api_key=getenv("COQUI_API_KEY"),
118
  )
119
 
 
113
 
114
  # Initialize CoquiSynthesizer
115
  synthesizer = CoquiSynthesizer(
116
+ voice_id=getenv("COQUI_VOICE_ID"),
117
  api_key=getenv("COQUI_API_KEY"),
118
  )
119