This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.json
executable file
·53 lines (51 loc) · 1.67 KB
/
app.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
{
"name": "teneo-web-chat",
"description": "Teneo Web Chat UI",
"keywords": [
"bot",
"Teneo Web Chat"
],
"repository": "https://github.com/artificialsolutions/teneo-web-chat/",
"env": {
"TENEO_ENGINE_URL": {
"description": "Please input your Teneo Engine URL. https://some.engine/instance/",
"required":true
},
"LOCALE": {
"description": "Optional language code. Used for things like the placeholder text in the input box. Defaults to 'en' if left blank.",
"required":false
},
"TTS_ACTIVE": {
"description": "Optional value to indicate if TTS service is activated",
"required": false
},
"ASR_ACTIVE": {
"description": "Optional value to indicate if ASR service is activated",
"required": false
},
"TTS_SYMBOL": {
"description": "Symbol to represent TTS service is active",
"required": false
},
"TTS_STOP_SYMBOL": {
"description": "Symbol to represent TTS stop when using TTS service",
"required": false
},
"ASR_RECORDING_SYMBOL": {
"description": "Symbol to represent ASR is recording",
"required": false
},
"ASR_RECORD_SYMBOL": {
"description": "Symbol to represent ASR recording action when using ASR",
"required": false
},
"SHOW_TTS_BUTTON": {
"description": "Show TTS button",
"required": false
},
"SHOW_ASR_BUTTON": {
"description": "Show ASR button",
"required": false
}
}
}