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