Hi all, is it possible to extract intents from a text using the APIs? I'm trying with openai.Completion.create with davinci but I get totally unrelated results. Am I using the wrong API?
I'm looking to get something like this from a text
{
"intents": [
{
"intent": "weather",
"weight": 0.9
},
{
"intent": "information_request",
"weight": 0.1
}
]
}
something like https://api.openai.com/v1/intents (this url does not work)
Note: I've moved the question from api-discussion channel