-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.default.js
33 lines (28 loc) · 942 Bytes
/
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
/*
User-specific configuration
** IMPORTANT NOTE ********************
* Please ensure you do not interchange your username and password.
* Hint: Your username is the lengthy value ~ 36 digits including a hyphen
* Hint: Your password is the smaller value ~ 12 characters
*/
exports.conversationWorkspaceId = ''; // replace with the workspace identifier of your conversation
// Create the credentials object for export
exports.credentials = {};
// Watson Conversation
// https://www.ibm.com/watson/developercloud/conversation.html
exports.credentials.conversation = {
password: '',
username: ''
};
// Watson Speech to Text
// https://www.ibm.com/watson/developercloud/speech-to-text.html
exports.credentials.speech_to_text = {
password: '',
username: ''
};
// Watson Text to Speech
// https://www.ibm.com/watson/developercloud/text-to-speech.html
exports.credentials.text_to_speech = {
password: '',
username: ''
};