-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.default.js
53 lines (45 loc) · 1.06 KB
/
config.default.js
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
// TJBOT HARDWARE
exports.hardware = [];
// TJBOT CONFIG
exports.tjConfig = {
log: {
level: 'verbose'
}
};
// WATSON CREDENTIALS
exports.credentials = {};
// Watson Assistant
// https://www.ibm.com/watson/services/conversation/
exports.credentials.assistant = {
password: '',
username: ''
};
// Watson Language Translator
// https://www.ibm.com/watson/services/language-translator/
exports.credentials.language_translator = {
password: '',
username: ''
};
// Watson Speech to Text
// https://www.ibm.com/watson/services/speech-to-text/
exports.credentials.speech_to_text = {
password: '',
username: ''
};
// Watson Text to Speech
// https://www.ibm.com/watson/services/text-to-speech/
exports.credentials.text_to_speech = {
password: '',
username: ''
};
// Watson Tone Analyzer
// https://www.ibm.com/watson/services/tone-analyzer/
exports.credentials.tone_analyzer = {
password: '',
username: ''
};
// Watson Visual Recognition
// https://www.ibm.com/watson/services/visual-recognition/
exports.credentials.visual_recognition = {
api_key: ''
};