https://github.com/zemuldo/silly-chatbot
Silly chatbot using dialogue flow
https://github.com/zemuldo/silly-chatbot
chatbot dialogflow
Last synced: about 1 year 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T20:02:53.000Z (over 3 years ago)
- Last Synced: 2025-02-11T16:36:14.375Z (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?"}
```