Spaces:
Runtime error
Runtime error
Commit
·
0549b59
1
Parent(s):
0cc30d7
Update app.py
Browse files
app.py
CHANGED
@@ -40,14 +40,14 @@ with gr.Blocks() as demo:
|
|
40 |
msg.submit(create_conversation, [msg, chatbot, collection_name], [msg, chatbot])
|
41 |
|
42 |
|
43 |
-
# Retrieve the serialized list of username and password pairs from environment variable
|
44 |
-
credentials_json = os.environ.get("CREDENTIALS")
|
45 |
-
|
46 |
-
if credentials_json is None:
|
47 |
-
|
48 |
-
else:
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
|
53 |
|
|
|
40 |
msg.submit(create_conversation, [msg, chatbot, collection_name], [msg, chatbot])
|
41 |
|
42 |
|
43 |
+
# # Retrieve the serialized list of username and password pairs from environment variable
|
44 |
+
# credentials_json = os.environ.get("CREDENTIALS")
|
45 |
+
|
46 |
+
# if credentials_json is None:
|
47 |
+
# print("Error: Please set the CREDENTIALS environment variable with a JSON representation of the username and password pairs.")
|
48 |
+
# else:
|
49 |
+
# # Parse the JSON string into a list of tuples
|
50 |
+
# credentials = json.loads(credentials_json)
|
51 |
+
# demo.launch(auth=credentials)
|
52 |
|
53 |
|