Intent Detection¶
In the simplest case, our intent detector can be used to detect a non-parametrized intent in a text. For example, when the following request (with the appropriate credentials and model id) is sent:
curl -H 'Authorization: Basic <base-64-encoded-userid:password'> \ https://intent.geneea.com/models/<model-id>/intent?text=hello
you receive response similar to this:
{ "mainIntent": { "name": "greeeting", "confidence": 1.0, "args": [] }, "allIntents": [{ "name": "greeeting", "confidence": 1.0, "args": [] }] }