I am using IBM Watson Assistant on a Lite plan in Frankfurt. I am trying to create contextual entities by annotating intents as described here:
https://www.ibm.com/cloud/architecture/demo/try-watson-assistant-contextual-entities
https://medium.com/ibm-watson/contextual-entities-with-ibm-watson-assistant-f41b2e0ca82e
The described Annotation Tab when creating an Entity is missing. I cannot edit Intents as described either: Doubleclicking words in the User Examples is not possible, the described Popup is not showing.
I ran into this myself some months ago. See the list of supported languages by feature. Contextual entities are not yet supported for German. Thus, you are not seeing the annotation feature.
Related
I have a project which needs to show a Carousel. I tried many ways but no other things work for me. Tried many Javascript and HTML Carousel but none of them works in Watson. It has been for several days. It is really mandatory anyone who knows anyways please help me.
thank you.
You can create carousels and other rich UI elements with Botonic (a React Framework for building conversational apps) and integrate it with Watson using the official #botonic/plugin-watson
For one of our projects we also needed a picture carousel, which currently Watson Assistant via the rich formats does not support (i.e. multiple images within an array). We therefore created our own json rich response output that then triggered a carousel output within the Watson Web chat "client". You can extend the default Watson Web chat, to handle your own responses. See custom content for the Watson Web Chat (https://web-chat.global.assistant.watson.cloud.ibm.com/docs.html?to=api-render ) & custom response types. The original developer notes for the Watson Web Chat did have a carousel example, but don't see that there anymore.
First of all, thanks for taking the time to read through our issue.
So, we have a Dialogflow project connected to an already existing google project. When we try to test our skills on google by the Integrations tab, it displays an error 'Precondition check failed' without any more information, even though it still updates and uses our Dialogflow intents as it should.
The problem comes when we update anything on the actions console or try to make an alpha deploy of our skill. The moment we change anything, it comes back to the default configuration with the message 'Start building your action by defining the main invocation.' on the main invocation.
We have no clue how to handle this problem or if we have to configure something special on either of the systems to make it work. Any ideas are welcome.
If you want to integrate the Google Assistant with Dialoflow, I strongly recommend you check the new development Google Assistant's platform with a built-in conversation builder, here. Furthermore, there is a quick start guide and conversational actions guide.
As I mentioned in the first comment, you need to have appropriate permissions to create an interaction within Dialogflow, you can check the pre-defined roles here. In addition, since you are starting with Dialogflow, I would advise you to start with the available quick-starts and the setup tutorial, which explains how to begin using Dialogflow.
An answer provide by #Simon O'Doherty in a post:How to capture the multiple values of one entity in IBM watson assistant after asking slot?
said that we can tag entity in an intent, however, in my watson, I do not see this function. Is it be deleted?or it's a version-limited function?
If not, do anyone know how to open the function?
My waston do not show any tag option when I try to edit an intent:
I ran into this, too, for my German language. The support for tagging contextual entities is coming slowly to non-English languages. There is an IBM Watson Assistant doc page showing features and supported languages. Japanese and German are not supported (yet?) for the tagging you asked for.
is there a long press event on sap.m.List or sap.m.Button?
I can't seem to find any.
Thanks
As kazandzhiro pointed out it is not part of the current API which is 1.36.10.
-- SPOILER --
But it will be available once SAPUI5 implements the SAP Fiori 2.0 Guidelines. SAP is currently finishing internal works on Fiori 2.0 and some of the new features and controls are already implemented.
You can find them in the new sap.uxap.* Package.
So stay aware...
currently there is no support for this in the UI5 framework. But you can always implement it by yourself.
A long press event is currently not part of the ui5 framework.
You can look up the supported events in the SAPUI5 Reference.
Just search for sap.m.Button or sap.m.List and you can see the Event Summary.
When I look at the .asmx page in the browser I see:
The following operations are supported. For a formal definition, please review the Service Description.
AcceptCaseInformation
ClearServiceErrors
CreateBatch
GetBookingsOnIndictment
GetCaseInformation
GetCasesForJacket
When I reference the asmx file in my project I do not see these web methods. I see the complete set of methods in the Reference.cs.
JSSTester.GrandJuryService.GetBookingsOnIndictmentRequest
JSSTester.GrandJuryService.GetBookingsOnIndictmentRequestBody
JSSTester.GrandJuryService.GetBookingsOnIndictmentResponse
What am I not setting to allow me to see the WebMethods for that asmx page?
TIA
If I'm following your process, you're using the "Add Service Reference" option through your project in Visual Studio.
By default, the 3.5 apps want to leverage the newer WCF framework, which doesn't use the older web service architecture found in your ASMX style pages. However, you can still add the older services, it just takes a little more work.
When this dialog opens up, there should be a button at the bottom at the page that says "Add Web Reference." Click this button and it should expose the "legacy" methods that are available.
In general, it should not be necessary to use the "Advanced" button and to revert to a Web Reference. In general, any standard web service created using VS2005 should be consumable via a Service Reference with no trouble at all.
Is your service created using WSE? Does it contain references to Microsoft.Web.Services3? In that case, you don't have a standard VS2005 web service - you have an obsolete WSE service, and you will need to look more closely to see what the problem is.