-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
executable file
·51 lines (43 loc) · 1.5 KB
/
config.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
/*
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 = '0d1274ad-3c91-45d9-b330-18a888a3bcf7'; // 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: ''
};*/
exports.credentials.conversation = {
url: 'https://gateway.watsonplatform.net/conversation/api',
username: 'af421b13-3eb5-4f71-8fef-f861d8eced53',
password: 'sVEnMhqoBDyt'
}
exports.credentials.speech_to_text = {
url: "https://stream.watsonplatform.net/speech-to-text/api",
username: "06dea86c-c81a-4822-8a1e-900749823c7f",
password: "6fMiXLz0vaQz"
}
exports.credentials.text_to_speech = {
url: "https://stream.watsonplatform.net/text-to-speech/api",
username: "3b39a4df-3937-4cfe-bc81-f35a2a4222bc",
password: "NSbQScrAPQ0P"
}