bentobytes commited on
Commit
0549b59
·
1 Parent(s): 0cc30d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
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
- 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
 
 
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