File tree 2 files changed +28
-25
lines changed
2 files changed +28
-25
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,15 @@ def install_nltk_dependencies():
20
20
def init ():
21
21
from app .agents .models import Bot
22
22
23
- # create default bot
24
- bot = Bot ()
25
- bot .name = "default"
26
- bot .save ()
27
- print ("Created default bot" )
23
+ try :
24
+ # create default bot
25
+ bot = Bot ()
26
+ bot .name = "default"
27
+ bot .save ()
28
+ print ("Created default bot" )
29
+ except :
30
+ print ("Default agent exists.. skipping.." )
31
+
28
32
29
33
# import some default intents
30
34
from app .intents .controllers import import_json
Original file line number Diff line number Diff line change 1
- bs4 == 0.0.1
2
- Flask == 0.12.3
1
+
2
+ Flask == 0.12.4
3
+ flask-mongoengine == 0.9.5
4
+ Flask-Script == 2.0.6
3
5
Flask-Cors == 3.0.3
6
+ blinker == 1.4
7
+
8
+ bs4 == 0.0.1
4
9
html2text == 2017.10.4
5
- httplib2 == 0.10.3
6
- ipaddress == 1.0.19
7
- Jinja2 == 2.10
8
- JSON-log-formatter == 0.2.0
9
- mongoengine == 0.15.0
10
- flask-mongoengine
10
+ simplejson == 3.13.2
11
+ pytest == 3.4.2
12
+
13
+ spacy == 2.0.18
11
14
nltk == 3.2.5
12
15
scipy == 0.19.1
13
16
numpy == 1.13.3
14
17
pandas == 0.21.1
18
+ scikit-learn == 0.19.1
19
+ cloudpickle == 0.5.2
20
+ h5py == 2.7.1
21
+ tensorflow == 1.8.0
22
+
15
23
parsedatetime == 2.4
16
24
python-crfsuite == 0.9.5
17
25
python-dateutil == 2.6.1
18
26
requests == 2.18.4
19
- scikit-learn == 0.19.1
20
- simplejson == 3.13.2
21
- Werkzeug == 0.13
22
- gunicorn
23
- gevent
24
- pytest
25
- cloudpickle
26
- flask_script
27
- blinker
28
- h5py
29
- spacy
30
- tensorflow
27
+
28
+ gunicorn == 19.7.1
29
+ gevent == 1.2.2
You can’t perform that action at this time.
0 commit comments