Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zemuldo/silly-chatbot
Silly chatbot using dialogue flow
https://github.com/zemuldo/silly-chatbot
chatbot dialogflow
Last synced: about 1 month ago
JSON representation
Silly chatbot using dialogue flow
- Host: GitHub
- URL: https://github.com/zemuldo/silly-chatbot
- Owner: zemuldo
- License: mit
- Created: 2020-01-10T16:55:07.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T20:02:53.000Z (almost 2 years ago)
- Last Synced: 2023-02-27T08:02:43.924Z (over 1 year ago)
- Topics: chatbot, dialogflow
- Language: JavaScript
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# silly-chatbot
URL: `wss://z-silly-chatbot.herokuapp.com/`
## Get session
### Message
```json
{"type": "login"}
```### Response
```json
{"type":"sessionId","msg":"76603943-e974-40d2-981a-651df299950f"}
```## Send a chat message
### Chat Message
```json
{"type": "chat", "msg": "Hello", "sessionId": "76603943-e974-40d2-981a-651df299950f"}
```### Chat Response
```json
{"msg":"Hello! How can I help you?"}
```