dialogflow-java-client
dialogflow-java-client copied to clipboard
Java client library for Dialogflow
Hi, Read this: https://github.com/api-ai/apiai-java-client/blob/master/samples/clients/text-client/src/main/java/ai/api/examples/TextClientApplication.java but it does not show how to do CURD on "intent" via API? Please give some examples? I am aware this is available: https://api.ai/docs/reference/agent/intents
While some of the models in the client contain maps of , others use which can cause problems if you have a conflicting JSON library like Jackson (we're using Spring...
I added support for entity upload, useful to load data from local or external systems.
I wanted to read developer entities without reimplementing everything from scratch and I see there are two ways to do it now: 1. Add it on top of https://github.com/api-ai/apiai-java-client/pull/13 ,...
For input "1 quarter" entity `@sys.duration` returns `"duration": "1 quarter"` instead of expected: ``` "duration": { "amount": 1, "unit": "q" } ``` This is the only unit I noticed that...
Can we get some solid structure for parameters in results section? For example for unit currency type when we give $50 we get currency type divided to amount and currency...