Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Introduced a new file called nlu_core_server.py inside the folder "Full Code [Latest release of Rasa NLU and Rasa Core]"
This code when executed, runs a a simple web server at a port number specified in the code itself.
This local server that can send responses according to the questions sent to it.
Example url:http://localhost:5003/chat/
url_type:POST
request body type:raw(application/json)
sample request:{ "sender": "user1", "message": "how is the weather in Dublin"}
For every unique "sender", a different chat thread is maintained by the server so that the conversation is unique to each client.
Response would be a json containing the string:
"It is currently Sunny in Dublin at the moment. The temperature is 23.0 degrees, the humidity is 50% and the wind speed is 8.1 mph."