Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ DEVELOPER_PASSWORD = os.getenv("DEV_PWD")
|
|
23 |
|
24 |
# Add this constant for the RapidAPI key
|
25 |
#RAPID_API_KEY = os.getenv("RAPID_API_KEY")
|
26 |
-
RAPID_API_KEY = "
|
27 |
|
28 |
# Add this constant for available speakers
|
29 |
AVAILABLE_SPEAKERS = {
|
@@ -288,4 +288,4 @@ with gr.Blocks() as demo:
|
|
288 |
outputs=[user_target_speaker]
|
289 |
)
|
290 |
|
291 |
-
demo.launch(auth=("
|
|
|
23 |
|
24 |
# Add this constant for the RapidAPI key
|
25 |
#RAPID_API_KEY = os.getenv("RAPID_API_KEY")
|
26 |
+
RAPID_API_KEY = os.getenv("RAPID_API_KEY")
|
27 |
|
28 |
# Add this constant for available speakers
|
29 |
AVAILABLE_SPEAKERS = {
|
|
|
288 |
outputs=[user_target_speaker]
|
289 |
)
|
290 |
|
291 |
+
demo.launch(auth=(os.getenv("DEV_USER"), os.getenv("DEV_PWD")))
|