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
1 answer

Constraint wit.ai keyword with regular expression

Is there any way to constrain keywords in wit.ai to match certain patters using regular expressions or duckling? I see that certain use cases have been built in (i.e. wit/location) but in my case the parser needs to pick up ids generated by my…
mikesol
  • 1,177
  • 1
  • 11
  • 20
0
votes
1 answer

wit.ai doesn't work well when extracting information from long messages

I'm trying to train my wit.ai app to extract messages sent with this pattern: post this whole message minus the 'post' keyword should be extracted It works fine for a few sentences, but once you start typing out 5 sentences or more, it doesn't seem…
Chris
  • 3
  • 1
  • 4
0
votes
3 answers

Facebook messenger chatbot gives duplicate replies

I'm building a chatbot with wit.ai and python and integrating it with Facebook Messenger. I have set up webhooks as well as send function and fb_message function exactly like in this tutorial:…
0
votes
1 answer

Json to Pojo converstion for response from wit.ai

While calling /message endpoint of wit.ai their documentation says they'll send a reply of following format: { "msg_id": "387b8515-0c1d-42a9-aa80-e68b66b66c27", "_text": "how many people between Tuesday and Friday", "entities": { "metric": [ { …
Heisenberg
  • 5,514
  • 2
  • 32
  • 43
0
votes
1 answer

alternative to wit.ai merge since it is deprecated now

I was browsing through the code of node-wit and came across this const validateActions = (logger, actions) => { if (typeof actions !== 'object') { throw new Error('Actions should be an object. ' + learnMore); } if (!actions.send) { …
PirateApp
  • 5,433
  • 4
  • 57
  • 90
0
votes
1 answer

Implement wit.ai action in .Net server

can someone show me how to implement a bot action in .Net server? there are any template or liblary for .net? Thanks a lot.
Sỹ Lê
  • 133
  • 2
  • 8
0
votes
1 answer

Developing Chat Bot using Wit.aI

I am planning to develop a chatbot using Wit.ai for Android and iOS. I want to have a server where I have the Bot engine. The Bot Engine has several components like Exported application from Wit.ai, calls to weather API, date API etc. When the user…
0
votes
1 answer

How to work with multiple entities in one message in Wit.ai?

I followed this tutorial to write a simple script using Wit.ai. So, there is a code snippet which retrieves the entity from the first message: def first_entity_value(entities, entity): if entity not in entities: return None val =…
Alex Ermolaev
  • 311
  • 2
  • 4
  • 17
0
votes
1 answer

wit.ai Is it possible to download the inbox data?

I'm creating a complex chatbot which will need user testing. It might be useful to be able to download the inbox data as json for intents that are not understood, rather than dealing with it in on the online wit user interface. Is this possible at…
0
votes
1 answer

Untrain expressions in wit

I input expression dont and wit doesn't recognize it as expected. If I create a trait entity yes_no and label dont as yes_no with value no then the next time I input expression dont, wit outputs yes_no with value no. My question is how could I…
impulse
  • 206
  • 2
  • 4
0
votes
1 answer

Changing Wit.ai Default Max Steps

For some reason I'm unable to increase the default max steps for my chat bot. It seems that this number is now defined in lib/config.js rather than lib/wit.js like it used to be. No matter what I change the DEFAULT_MAX_STEPS constant to in my config…
wanstan
  • 15
  • 5
0
votes
1 answer

Why don't quick replies I set on Wit.ai work on facebook messenger when deployed?

I'm using Wit.ai to create a chatbot on facebook messenger. However, if I set quick replies for a certain user input, having deployed the bot and entering said input, I only see the text that the quick reply buttons are supposed to follow.
0
votes
1 answer

after triggering a branch in wit.ai using weather the initial action no longer works

I followed the quick start guide and was able to complete it. However, when i tried testing the branch action then followed by the initial action where the parameters are complete it keeps on responding with a question triggered by the branch…
user1098694
  • 31
  • 1
  • 6
0
votes
1 answer

Can we deploy wit.ai on a Private network or server ?

I am using Wit.ai public cloud in my application but i wanted to check if there is any way we can deploy this in a private cloud or locally. As I am using this for some secure data interactions too. Security is a major concern. Any answers and…
0
votes
1 answer

wit.ai + Jump from one story to another

Using bookmarks to jump from any point in the story is a very useful feature. But can we use Jump and bookmark to jump from one story to another? It seems to be possible as the bookmarks drop-down shows all the bookmarks across the stories not just…
Nayana M
  • 65
  • 7