ibm-cloud

Bluemix Watson Conversation API to manage intents, entities

大兔子大兔子 提交于 2019-12-01 23:41:14
The documented API only allows interaction with the Watson Conversation service once it is configured. Is there any API which will allow the configuration. For example create intents, entities etc... Good questions and we agree. We have plans shortly to expose a lower level set of APIs that will address your concerns. Brian At this point in time the APIs for what you want to do are not publicly exposed. Just to close out this question. The API for Watson Assistant (formerly Watson Conversation) can be seen here . The Watson Developer SDKs support that API. To see the API in action there are

How to copy files from Liberty on Bluemix to Windows?

孤街醉人 提交于 2019-12-01 20:16:34
问题 I'm using Windows7, I have cf setup, my app has been migrated to Diego and I can ssh into my app (cf ssh APPNAME). I can run scp within my ssh but I don't know what options to use. From what I can tell, scp expects the target machine to have ssh running. So if I was connnected to Bluemix from a Linux box, the target would be my local box and a user that had ssh access. Since I'm running windows, that's not available by default. If all of that is true, then I think I have a few options: - use

How to give personalised greeting in Watson Conversation?

一笑奈何 提交于 2019-12-01 18:58:09
While Defining the Dialog in the Watson Conversation I'm not able to greet user with his/her name or I'm not able to detect contact number sent by the user and rephrase it to the user. Is it possible to do it in the Watson Conversation Api or not. Do you already have access to this information? You can send these values through as context, and refer to them using $context_variable The same goes for collecting information from a user. You can capture things using regular expressions via your application, or using some Spring Expressions, you can see the text.matches here: https://www.ibm.com

How to copy files from Liberty on Bluemix to Windows?

瘦欲@ 提交于 2019-12-01 18:55:30
I'm using Windows7, I have cf setup, my app has been migrated to Diego and I can ssh into my app (cf ssh APPNAME). I can run scp within my ssh but I don't know what options to use. From what I can tell, scp expects the target machine to have ssh running. So if I was connnected to Bluemix from a Linux box, the target would be my local box and a user that had ssh access. Since I'm running windows, that's not available by default. If all of that is true, then I think I have a few options: - use Linux instead - install ssh into windows - possibly use something like winscp but I'm not sure if

How can I fix the permissions using docker on a bluemix volume?

别来无恙 提交于 2019-12-01 18:21:29
In a container, I am trying to start mysqld. I was able to create an image and push to the registry but when I want to start it, the /var/lib/mysql volume can't be initialized as I try to do a chown mysql on it and it is not allowed. I checked docker specific solutions but for now I couldn't make any work. Is there a way to set the right permissions on a bind-mounted folder from bluemix? Or is the option --volumes-from supported, I can't seem to make it work. The only solution I can see right now is running mysqld as root, but I would rather not. Try with mount-bind created a volume on bluemix

Where to get the Alchemyapi API key?

我们两清 提交于 2019-12-01 18:20:36
I'm doing the, Getting Started with AlchemyAPI Using Ruby , Ruby tutorial. But I cannot seem to find my API key. Source: http://www.alchemyapi.com/developers/getting-started-guide/using-alchemyapi-with-ruby At step 3: 3) Configure the Ruby SDK to use your API Key Now that you have the Ruby SDK code on your computer, you need to do configure it to use your API key. In the alchemyapi_ruby directory, run: ruby alchemyapi.rb YOUR_API_KEY Where YOUR_API_KEY is the 40 character API key you received in your e-mail when you registered. If everything goes okay, you should see the following output: But

New To Bluemix, getting error “The host is taken” for new app

限于喜欢 提交于 2019-12-01 16:48:26
I am new to Bluemix as part creating an app following the steps below: Log in to Bluemix with your Bluemix account. Open the Catalog menu. From the Runtimes section, click Liberty for Java. In the App field, specify the name of your app [entered name] Click the Create button I am getting the error below: BXNUI2032E: An error occurred when contacting Cloud Foundry to create a resource. Resource: routes. Cloud Foundry message: "The host is taken: vTest." See the Troubleshooting topics in the IBM Bluemix Documentation to check service status, review troubleshooting information, or for information

GYP ERR! build error. stack Error: 'make' failed with exit code 2

拈花ヽ惹草 提交于 2019-12-01 15:04:22
I am currently working on a nodejs web application I am having trouble pushing the application online with cloud foundry. I did some research on the errors and it seems that maybe some of the packages being installed have some conflicts. This is the package.json file. { "dependencies": { "c3": "^0.4.12", "cfenv": "1.0.0", "cloudant": "^1.8.0", "dygraphs": "^2.0.0", "express": "4.5.1", "getmac": "1.0.6", "http": "0.0.0", "mqtt": "1.0.5", "properties": "1.2.1", "save": "^2.3.0", "sockjs": "0.3.9", "websocket-multiplex": "0.1.x" }, "description": "description.", "license": "UNLICENSED", "main":

GYP ERR! build error. stack Error: 'make' failed with exit code 2

◇◆丶佛笑我妖孽 提交于 2019-12-01 13:51:11
问题 I am currently working on a nodejs web application I am having trouble pushing the application online with cloud foundry. I did some research on the errors and it seems that maybe some of the packages being installed have some conflicts. This is the package.json file. { "dependencies": { "c3": "^0.4.12", "cfenv": "1.0.0", "cloudant": "^1.8.0", "dygraphs": "^2.0.0", "express": "4.5.1", "getmac": "1.0.6", "http": "0.0.0", "mqtt": "1.0.5", "properties": "1.2.1", "save": "^2.3.0", "sockjs": "0.3

Unable to run bms-samples-cordova-hellopush - bms_samples_cordova_push-Swift.h file not found

淺唱寂寞╮ 提交于 2019-12-01 11:46:38
问题 I am trying to run the Push notifications sample available on GitHub. Unfortunately, the configuration as outlined here doesn't work. Docs say: At the top of your AppDelegate.m : #import "[your-project-name]-Swift.h" If your project name has spaces or hyphens, replace them with underscores in the import statement. Example: // Project name is "Test Project" or "Test-Project" #import "Test_Project-Swift.h" So I did for the sample: #import "bms_samples_cordova_push-Swift.h" ObjC Bridging Header