Skip to content

returns empty intents despite trained app and existing utterances #98

@vitto-jf

Description

@vitto-jf

I’m consistently getting an empty intents array from the /message endpoint, even though the app is trained (training_status: "done") and the intent + utterances exist. I reproduced this across two Meta/Wit accounts. A teammate doing the same in the same network gets the correct intent back.

Steps to Reproduce

Create intent triggeraction and add utterances (e.g., “move the cube”).

Wait until app reports training_status: "done".

Call /message with the Client token:

curl -H "Authorization: Bearer <CLIENT_TOKEN>" ^
"https://api.wit.ai/message?v=20241015&q=move%20the%20cube"

Observe response.

Expected Result

{
"text": "move the cube",
"intents": [{"name": "triggeraction", "confidence": 0.8}],
"entities": {},
"traits": {}
}

Actual Result

{
"text": "move the cube",
"intents": [],
"entities": {},
"traits": {}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions