-
Notifications
You must be signed in to change notification settings - Fork 1
/
AVSPlugin.json
63 lines (63 loc) · 2.31 KB
/
AVSPlugin.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
{
"$schema": "plugin.schema.json",
"info": {
"class": "AVS",
"title": "The Alexa Voice Service Headless Client",
"callsign": "AVS",
"locator": "libWPEFrameworkAVS.so",
"status": "alpha",
"description": "The Alexa Voice Service Headless Client serves as a personal assistant",
"version": "1.0"
},
"configuration": {
"type": "object",
"properties": {
"configuration": {
"type": "object",
"properties": {
"alexaclientconfig": {
"type": "string",
"description": "The path to the AlexaClientSDKConfig.json (e.g /usr/share/WPEFramework/AVS/AlexaClientSDKConfig.json)"
},
"smartscreenconfig": {
"type": "string",
"description": "The path to the SmartScreenSDKConfig.json (e.g /usr/share/WPEFramework/AVS/SmartScreenSDKConfig.json). This config will be used only when SmartScreen functionality is enabled"
},
"kwdmodelspath": {
"type": "string",
"description": "Path to the Keyword Detection models (e.g /usr/share/WPEFramework/AVS/models). The path mus contain the localeToModels.json file"
},
"loglevel": {
"type": "string",
"description": "Capitalized log level of the AVS components. Possible values: NONE, CRITICAL, ERROR, WARN, INFO. Debug log levels start from DEBUG0 up to DEBUG0"
},
"audiosource": {
"type": "string",
"description": "The callsign of the plugin that provides the voice audio input or PORTAUDIO, when the portaudio library should be used. (e.g BluetoothRemoteControll, PORTAUDIO)"
},
"enablesmartscreen": {
"type": "boolean",
"description": "Enable the SmartScreen support in the runtime. The SmartScreen functionality must be compiled in"
},
"enablekwd": {
"type": "boolean",
"description": "Enable the Keyword Detection engine in the runtime. The KWD functionality must be compiled in"
}
},
"required": [
"alexaclientconfig",
"logLevel",
"audiosource"
]
}
},
"required": [
"callsign",
"classname",
"locator"
]
},
"interface": {
"$cppref": "{cppinterfacedir}/IAVSClient.h"
}
}