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

Importing data into wit.ai

Update : The stackoverflow mentionned below gave another solution, namely to import the json and replace the text with the data in the right format. I am now trying to see how I can fit the format given, which looks something like this : { …
Maude
  • 512
  • 3
  • 8
  • 23
2
votes
1 answer

Current status of NLP API's (Api.ai, Wit.ai, Luis, etc.)?

The company where I work needs to choose one of the available NLP API's providers. For the POC I've integrated Api.Ai and I must say it works really good. Console UI is smooth and easy to work with. The same goes for REST API's. Though I have to…
sabiland
  • 2,526
  • 1
  • 25
  • 24
2
votes
1 answer

quickreplies coding for node-wit example messenger.js

I cannot get quickreplies to work in node-wit messenger.js example. I tried may things including: 1) Updated this line of code Our bot actions (messenger.js): const actions = { send({sessionId}, {text,quickreplies}) 2) And Updated this line of…
2
votes
0 answers

Trouble recognizing one word intents

I'm using wit to recognize different intents in a retail context. Some of them trigger (successfully) FAQ answers, other initiate a business logic. Surprisingly, I'm having a lot of trouble with the most basics conversational intents, like answering…
Jose Lopez
  • 67
  • 6
2
votes
2 answers

How to handle wit.ai bot using Python

How to connect to and handle Wit.ai actions and intents from local machine? i.e sending query to wit.ai using python api's and performing actions on local machine depend on json response. I cannot find any proper documentation regarding this. Almost…
sid8491
  • 6,622
  • 6
  • 38
  • 64
2
votes
1 answer

Wit.ai How to add dynamic Quick Replies

Here is the sentence from the Wit.ai doc : https://wit.ai/docs/recipes#categorize-the-user-intent How to add dynamic Quick Replies If you want to programmically create Quick Replies, you will need to use a Bot Executes to trigger a function on…
2
votes
0 answers

Multiple trait entities in wit.ai

I have created two entities in Wit. One is "sentiment" and one is "category". I've fed them both with labeled data through the HTTP API. Sentiment analysis was working great up until I have added the "category" entity. Now Wit only recognizes…
Ömer Karışman
  • 653
  • 5
  • 14
2
votes
1 answer

Error: Cannot find module 'node-wit'

Error: Cannot find module 'node-wit' at Function.Module._resolveFilename (module.js:339:15) at Function.Module._load (module.js:290:25) at Module.require (module.js:367:17) at require (internal/module.js:20:19) at…
PPShein
  • 13,309
  • 42
  • 142
  • 227
2
votes
0 answers

Missing the action during a converse

I could use some help understanding the converse option for wit.ai I've build a simple story with some steps in it. The dialog should go as follow: 1) User: I want to create a new user -> intent : newUser Bot: Ok, let do this! I need a ... 2) User:…
RClemens
  • 301
  • 2
  • 7
2
votes
1 answer

Is it possible to get JAVA SDK for wit.ai?

I have explored wit.ai github repositories. They do not seem to have official Java SDK for wit.ai. Whereas, they do support other platforms like: nodejs. Does anyone know an alternative to actually get JAVA SDK for wit.ai? I tried with sdks.io, but…
a3.14_Infinity
  • 5,653
  • 7
  • 42
  • 66
2
votes
1 answer

wit.ai - unrecognised user entries

is it possible to have a catch-all for unrecognized user entries to move the user into a particular story? For example in a conversation. If there are no matching stories the bot will respond to try and push the user back on track? [user] Hi how…
Ben Kamara
  • 21
  • 1
2
votes
4 answers

Error importing app from backup on wit.ai

Since this weekend, when I try to create a new app in Wit.ai by importing from a backup just saved from another app I get a blank error message and the new app receive only part of the information from the backup. Here is the blank error message Has…
2
votes
1 answer

Confused with the "updates context keys with" feature..

do I need to define the key that gets updated with the new asnwer from the user, or do I set the condition that I need to be satisfied to proceed? The explainer on the right says both: Describe the context keys that will be updated by your action…
BTMKR
  • 21
  • 1
2
votes
1 answer

What should be done with conflicts in wit.ai?

I'm begining work with wit.api chatbot and conducting through their quickstart example. It looks very simple and clear. But it only looks. I can not even create second branch with "missingLocation", becouse I get "Conflicts with "The weather is…
Antonina
  • 604
  • 1
  • 5
  • 16
2
votes
1 answer

How to properly structure wit.ai intents?

I have a bot which provides information about cinemas like movie schedules and release dates. Part of this is a cinema_action trait entity that maps to different values based on the user's input. I have inserted training data for each…
bluenavajo
  • 483
  • 5
  • 9