Advertisement
Guest User

Untitled

a guest
Sep 21st, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. /*
  2. * User-specific configuration
  3. * IMPORTANT NOTES:
  4. * Please ensure you do not interchange your username and password.
  5. * Your username is the longer value: 36 digits, including hyphens
  6. * Your password is the smaller value: 12 characters
  7. */
  8.  
  9. exports.workspaceId = '0841bcc2-4681-470e-be5c-c5f4f27ddb79'; // replace with the workspace identifier of your conversation
  10.  
  11. // Set this to false if your TJBot does not have a camera.
  12. exports.hasCamera = false;
  13.  
  14. // Create the credentials object for export
  15. exports.credentials = {};
  16.  
  17. // Watson Assistant
  18. // https://www.ibm.com/watson/services/conversation/
  19. exports.credentials.assistant = {
  20. password: 'WGdWkEVJ2nk0',
  21. username: '4638fa29-4cb5-4b3a-9215-7cd1e3b6206f'
  22. };
  23.  
  24. // Watson Speech to Text
  25. // https://www.ibm.com/watson/services/speech-to-text/
  26. exports.credentials.speech_to_text = {
  27. password: 's3XP5FNzbnMq',
  28. username: 'e36a8738-513b-433b-b75f-5bbf681b4680'
  29. };
  30.  
  31. // Watson Text to Speech
  32. // https://www.ibm.com/watson/services/text-to-speech/
  33. exports.credentials.text_to_speech = {
  34. password: 'czyqIzgOcwwm',
  35. username: '94f47fe7-4798-427b-a373-8d9abf3f2fb7'
  36. };
  37.  
  38. // Watson Visual Recognition
  39. // https://www.ibm.com/watson/services/visual-recognition/
  40. exports.credentials.visual_recognition = {
  41. api_key: 'q1ShzJ0YGQxrHHOI5Vc_nM-bAhzwPLna5bBCX0ppaSNk'
  42. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement