Questions tagged [wit.ai]

Wit.ai is a NLP engine owned by Facebook that makes it easy for developers to build bots, applications and devices that you can talk or text to.

Wit.ai is a cloud service API for speech recognition and natural language processing, for use with bots, applications and devices.

Wit.ai can help you

  • Understand Natural Language: parse a message (Voice or Text) into structured data
  • Converse: predict the next action your bot should do (Bot Engine)

Source code available at GitHub.

326 questions
0
votes
0 answers

FB Messenger bot integrated with wit.ai does not work as in test mode

I have integrated wit.ai with FB Messenger, but the results I get while talking to him via Messenger are not the same I get while talking to him in testing mode. Specifically the variables are not populated in the bot response. Although they are…
0
votes
2 answers

how to dynamically build new json from old in javascript

I receive a json object with some number of quick reply elements from wit.ai, like this: "msg": "So glad to have you back. What do you want me to do? "action_id": "6fd7f2bd-db67-46d2-8742-ec160d9261c1", "confidence":…
jeromekjerome
  • 501
  • 1
  • 8
  • 26
0
votes
1 answer

how to build json array dynamically in javascript

I receive a json object with some number of quick reply elements from wit.ai, like this: "msg": "So glad to have you back. What do you want me to do? "action_id": "6fd7f2bd-db67-46d2-8742-ec160d9261c1", "confidence":…
jeromekjerome
  • 501
  • 1
  • 8
  • 26
0
votes
1 answer

How to send post http request in java for wit.ai audio

I have to send an wave file to wit.ai using http api call.In there documentation they have shown exaple using curl $ curl -XPOST 'https://api.wit.ai/speech?v=20141022' \ -i -L \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type:…
Sunil Kumar
  • 1,349
  • 3
  • 14
  • 25
0
votes
1 answer

Wit.ai - Getting 2 different intents with confidence = 1 providing the same input text

I notice the following behaviour yesterday on my english instance of Wit.ai. For the same input text "hi, i'd like to book a flight from brussels to nice, leaving next monday in the morning and back in the evening" I am getting sometimes the intent…
0
votes
1 answer

Chatbot with large DB integration

We want to build a Bot, which will ask questions to user and then will record their response. This Q&A will be intelligently done based upon responses from user. We have few initial questions at this moment; There has been lots of API's available…
Amit
  • 11
  • 4
0
votes
1 answer

Wit.ai bot understand wit/number as wit/location

What's wrong with Wit.ai ? My bot understand few numbers as location and it breaks my stories. You can see the picture below : What can I Do for that ? Thank you.
Pablo DelaNoche
  • 677
  • 1
  • 9
  • 28
0
votes
1 answer

How to get exact value of entity in WIT?

I have an entity with search strategy free-text and keyword. My problem is after I trained the entity for a while and give Wit a new expression with similar value entity, Wit correctly determine the entity, but the value is wrong. Wit automatically…
impulse
  • 206
  • 2
  • 4
0
votes
1 answer

Wit.ai differences between Trait - Free Text - Keyword and Intent/entities

It's a mess in my head right now. I've seen this video tutorial to understand Wit.ai logic : https://www.youtube.com/watch?v=yLAHVPaHWFA It's a really good video for basic training. But I can't still understand the logic. I want to create a story…
Pablo DelaNoche
  • 677
  • 1
  • 9
  • 28
0
votes
1 answer

How to use botkit with facebook and wit.ai

I am a novice in chatbot development and I would like some help. While it seems quite simple to connect botkit with facebook messenger and wit.ai in orger to use NLP. I haven't managed to do so. My initial goal is to have a simple conversation like…
0
votes
2 answers

How to make a wit.ai bot send the first message ?

While adding a story, the first message always starts with the user. Is there any way to make the bot send the first message ?
Nayan Tara
  • 11
  • 6
0
votes
1 answer

Node.js Wit.ai promise return function

My promise return undefined values. I'm not sure how I can perform this function correctly in my node.js page. Could you please help me with this in order to return all values AFTER geocoding in my context in good way! Thank you merge_location({ …
Pablo DelaNoche
  • 677
  • 1
  • 9
  • 28
0
votes
1 answer

Getting started with wit.ai and Node.js

I am trying to use wit.ai quickstart example. The example works with the hardcoded values but when I use the third party weather API and try to give the response to the user it doesn't work. Working code: const actions = { send(request,…
Saurabh Palatkar
  • 3,242
  • 9
  • 48
  • 107
0
votes
1 answer

Wit Quick Replies in Context

I am working on WIT Chat Bot... i have a story, in that i am asking for the quick replies Yes or No. if user press Yes or No. I have to make another call on WIT with context. So how can i set quick replies into context. how to handle quick…
Dhruvit Darji
  • 205
  • 2
  • 14
0
votes
1 answer

Is it possible to add my own custom words to the Wit.ai speech-to-text recognizer?

I'm using wit.ai as a (probably) temporary solution for a speech-to-text service in my own personal assistant. I then pass along this transcribed text elsewhere for further analysis. Eventually I'll probably move away to something a little more…
benwiz
  • 2,167
  • 3
  • 22
  • 33