https://github.com/hybridx/cybot
chatbot application with custom functions for slack api
https://github.com/hybridx/cybot
flask flask-application json python3 rasa-chat rasa-chatbot rasa-nlu
Last synced: about 2 months ago
JSON representation
chatbot application with custom functions for slack api
- Host: GitHub
- URL: https://github.com/hybridx/cybot
- Owner: hybridx
- License: mit
- Created: 2019-03-24T04:29:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-19T07:54:36.000Z (almost 5 years ago)
- Last Synced: 2025-03-31T19:14:19.008Z (about 1 year ago)
- Topics: flask, flask-application, json, python3, rasa-chat, rasa-chatbot, rasa-nlu
- Language: JavaScript
- Homepage:
- Size: 16.4 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chatbot Application
A chatbot application using RasaNLU to have a general conversation as well as customized replies.
### Development
Here's what you need to know about the API endpoints
- @create - `/app/data/create`
- @set - `/app/data/update`
- @remove - `/app/data/remove`
- @read - `/app/data/get_intent_data` `/app/data/read_all_intents`
##### The request data needs to be in the following format
```
data
{
"intent":<>,
"username":<>,
"answers":[],
"questions":[]
}
```