Logeswaransr commited on
Commit
80b9eda
·
1 Parent(s): 02e0565

Update interaction.py

Browse files
Files changed (1) hide show
  1. interaction.py +4 -0
interaction.py CHANGED
@@ -1,6 +1,10 @@
1
  import requests
2
  from gtts import gTTS
3
  import base64
 
 
 
 
4
 
5
  headers = {"Authorization": f"Bearer {API_Key}"}
6
 
 
1
  import requests
2
  from gtts import gTTS
3
  import base64
4
+ import os
5
+
6
+ API_Key = os.environ['API_Key']
7
+ API_URL = os.environ['API_URL']
8
 
9
  headers = {"Authorization": f"Bearer {API_Key}"}
10