-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbot_example.json
117 lines (105 loc) · 2.54 KB
/
bot_example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"bot": {
"ID": "05f079c46d096717604cc815f8eb5886",
"name": "Example bot",
"description": "This is an example",
"version": "1.0",
"repository": "www.example.com",
"creationDate": "018-05-23T04:27:53Z",
"updateDate": "20180523T042753Z",
"language": "EN",
"license": {
"type": "Apache License",
"version": "1.0",
"url": "url"
},
"remuneration": {
"method": "paid",
"tokens": 0.0001
},
"tags": [
"example","weather"
],
"author": {
"name": "John Doe",
"email": "john@example.com",
"country": "Canada",
"url": "https://www.example.com",
"seedAddress": "17mmd6HfhkFB2kLy2GBbWenn48YJf7mGwg"
},
"modes": {
"chat": true,
"voice": true,
"avatar": false,
"realTime": false,
"vr": false
},
"channels": {
"channel": {
"name": "web",
"enabled": true,
"mode": "voice"
}
},
"media": {
"thumbnail": "https://www.example.com/thumb/avatar/32/",
"avatar": {
"library": "https://www.example.com/library/avatar/32/ACTR/",
"prefix": "avatar_"
}
},
"runtime": {
"server": "https://127.0.0.1",
"type": "seed",
"IP": "127.0.0.1",
"port": 8888,
"encoding": "utf8",
"seedAddress": "17mmd6HfhkFB2kLy2GBbWenn48YJf7mGwg"
},
"textToSpeech": {
"provider": "string",
"server": {
"url": "https://www.example.com/api/v32",
"apiKey": "string",
"password": "string",
"token": "string",
"configurationParameters": "array"
},
"voice": "string",
"pitch": "string",
"language": "string",
"effect": "string",
"level": "string"
},
"voiceRecognition": {
"provider": "string",
"server": {
"url": "https://www.example.com/api/v32",
"apiKey": "string",
"password": "string",
"token": "string",
"language": "string",
"configurationParameters": "array"
}
},
"sentimentAnalysis": {
"provider": "string",
"server": {
"url": "https://www.example.com/api/v32",
"apiKey": "string",
"password": "string",
"token": "string",
"language": "string",
"configurationParameters": "array"
}
},
"logging": {
"enabled": true,
"method": "encoded",
"server": "https://logs.example.com"
},
"conversationFlow": {
"url": "https://flows.example.com/flows/flowID/32"
}
}
}