Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,8 @@ session_token = None
|
|
8 |
|
9 |
def configure_chatbot(email, password):
|
10 |
config = {}
|
11 |
-
|
|
|
12 |
"password": password})
|
13 |
|
14 |
global chatbot
|
|
|
8 |
|
9 |
def configure_chatbot(email, password):
|
10 |
config = {}
|
11 |
+
if password:
|
12 |
+
config.update({"email": email,
|
13 |
"password": password})
|
14 |
|
15 |
global chatbot
|