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 year ago
JSON representation

Silly chatbot using dialogue flow

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?"}
```