-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathubuntu_config
58 lines (46 loc) · 1.22 KB
/
ubuntu_config
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
// -*- mode: javascript -*- //
/*
* The example configuration file for running on a Raspberry Pi.
*
* For an explanation of the configuration file's format see the
* example_config file.
*/
{
"key_phrases" : [
"Dexter",
"Hey Computer"
],
"notifiers" : [
[ "dexter.notifier.logging.LogNotifier", {
}]
],
"components" : {
"inputs" : [
[ "dexter.input.openai_whisper.WhisperInput", {
"model" : "base"
}]
],
"outputs" : [
[ "dexter.output.io.LogOutput", {
"level" : "INFO"
}],
[ "dexter.output.mycroft.Mimic3Output", {
}]
],
"services" : [
[ "dexter.service.chronos.ClockService", {
}],
[ "dexter.service.chronos.TimerService", {
}],
[ "dexter.service.volume.VolumeService", {
}],
[ "dexter.service.wikiquery.WikipediaService", {
}],
[ "dexter.service.music.LocalMusicService", {
"dirname" : "${HOME}/Music"
}],
[ "dexter.service.randomness.RandomService", {
}]
]
}
}