Skip to content

Commit d8f45da

Browse files
committed
updated requirements.txt, added duplicate agent check in import
1 parent 775aedd commit d8f45da

File tree

2 files changed

+28
-25
lines changed

2 files changed

+28
-25
lines changed

manage.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@ def install_nltk_dependencies():
2020
def init():
2121
from app.agents.models import Bot
2222

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+
2832

2933
# import some default intents
3034
from app.intents.controllers import import_json

requirements.txt

+19-20
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
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
35
Flask-Cors==3.0.3
6+
blinker==1.4
7+
8+
bs4==0.0.1
49
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
1114
nltk==3.2.5
1215
scipy==0.19.1
1316
numpy==1.13.3
1417
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+
1523
parsedatetime==2.4
1624
python-crfsuite==0.9.5
1725
python-dateutil==2.6.1
1826
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

0 commit comments

Comments
 (0)