From e63ece5e41cc07f186c9e78a057831cfa67301c2 Mon Sep 17 00:00:00 2001 From: lilkr Date: Sun, 20 Jan 2019 12:14:07 +0800 Subject: [PATCH 1/3] [bug fix]: envirement dependency of macOS Mojava --- Full Code/requirements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Full Code/requirements.txt b/Full Code/requirements.txt index 86051a6..cff2ceb 100644 --- a/Full Code/requirements.txt +++ b/Full Code/requirements.txt @@ -2,19 +2,19 @@ gevent==1.2.1 Klein==17.2.0 boto3==1.4.4 -typing==3.5.3.0 +typing==3.6.6 future==0.16.0 six==1.10.0 jsonschema==2.6.0 matplotlib==1.5.3 requests==2.14.2 tqdm==4.11.2 -numpy==1.13.1 +numpy==1.15.0 simplejson==3.11.1 ### Sklearn -spacy==1.8.2 -scikit-learn==0.19.1 +spacy==2.0.18 +scikit-learn==0.20.0 sklearn-crfsuite==0.3.5 ###rasa_core @@ -40,4 +40,4 @@ rasa_nlu==0.11.4 pypandoc slackclient rasa_core==0.8.2 -git+https://github.com/apixu/apixu-python.git \ No newline at end of file +git+https://github.com/apixu/apixu-python.git From 0617d0940040d8a601290f0d60134fe26a17d55d Mon Sep 17 00:00:00 2001 From: Justina Petraityte Date: Fri, 25 Jan 2019 16:53:35 -0800 Subject: [PATCH 2/3] updated readme --- Full Code [Latest release of Rasa NLU and Rasa Core]/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Full Code [Latest release of Rasa NLU and Rasa Core]/README.md b/Full Code [Latest release of Rasa NLU and Rasa Core]/README.md index 0f45bc8..b503114 100644 --- a/Full Code [Latest release of Rasa NLU and Rasa Core]/README.md +++ b/Full Code [Latest release of Rasa NLU and Rasa Core]/README.md @@ -49,7 +49,7 @@ I will do my best to keep this repo up-to-date, but if you encounter any issues Latest code update: 25/01/2018 -Latest compatible Rasa NLU version: 0.14.1 +Latest compatible Rasa NLU version: 0.14.1 Latest compatible Rasa Core version: 0.13.0 From 3fe8a9f9acfa390cdf3786a209b2944562b5fa5a Mon Sep 17 00:00:00 2001 From: Amir Khan Date: Mon, 25 Feb 2019 18:37:47 +0530 Subject: [PATCH 3/3] changed to client.current --- Full Code [Latest release of Rasa NLU and Rasa Core]/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Full Code [Latest release of Rasa NLU and Rasa Core]/actions.py b/Full Code [Latest release of Rasa NLU and Rasa Core]/actions.py index c0d0301..dcead07 100644 --- a/Full Code [Latest release of Rasa NLU and Rasa Core]/actions.py +++ b/Full Code [Latest release of Rasa NLU and Rasa Core]/actions.py @@ -15,7 +15,7 @@ def run(self, dispatcher, tracker, domain): client = ApixuClient(api_key) loc = tracker.get_slot('location') - current = client.getCurrentWeather(q=loc) + current = client.current(q=loc) country = current['location']['country'] city = current['location']['name']