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

Chatbot implementation for Ionic

Is there any way to implement/integrate the chatbox for ionic application? I have gone through various options including: Wit.ai Facebook Messenger Though i am able to create a bot using FB messenger, I am not to view that properly on my mobile…
Rohan Kangale
  • 931
  • 4
  • 11
  • 29
0
votes
1 answer

Async function in wit actions

I am currently developing a bot using wit.ai. I am quite new to node.js. Basically, I am following the guide provided by node-wit lib. I construct my wit object by: const wit = new Wit({ accessToken: WIT_TOKEN, actions, logger: new…
Wei
  • 305
  • 5
  • 18
0
votes
1 answer

composite entities in story version of wit.ai

I am trying to familiarize myself with wit.ai story version using a pizza ordering example. As suggested, I used the start point as an all inclusive example: "Hi I would like to order a large pan crust pepperoni pizza with medium fries and a small…
0
votes
1 answer

WIT.AI how to post `context-key`

using Wit.ai HTML api. Posting /converse message I get the response of type:action with action name, then I execute some my own code. How then make POST with context-key to wit API to get an answer from the robot? Also how to trigger robot message…
Bublik
  • 912
  • 5
  • 15
  • 30
0
votes
1 answer

wit.ai is not training new examples / training status stays "clean"

yesterday I added a bunch of new training examples to my wit.ai-Project but the training status got stuck somehow. The status always stays "clean" (green icon) when i add new examples – it seems, that the training process can't get triggered…
0
votes
0 answers

Two responses coming when making a single ajax request to wit.ai

When I am calling wit.ai I get two responses. response 1: Request Method:OPTIONS, Status Code:204 No Content, Response headers: Access-Control-Allow-Credentials:true Access-Control-Allow-Headers:Authorization, X-Requested-With, Content-Type,…
Biboswan
  • 1,145
  • 12
  • 15
0
votes
1 answer

Upload data on wit.ai

I have some data in my spreadsheet which has some expressions and intent entities for each expression. I wish to train wit.ai with this data. How shall I do it?
Tejas Lad
  • 1
  • 2
0
votes
1 answer

How to extract entities from 'bot sends' in wit.ai

I have a scenario like this User says: What's the temperature in SF? bot executes: get_forecast updates context with: forecast bot send: {forecast} Is there a way to use {forecast} and extract entities from it? For example, I can continue the above…
user3344591
  • 567
  • 5
  • 21
0
votes
1 answer

facebook messanger -wit.ai integration -Chatbot -heroku deployed

I am working towards a chatbot,with wit.ai and facebook messanger as the interface for it,The integrating process went error less and the curl -H gave {success:true},but the bot does not respond if messaged,I looked all over it,may i know is it…
Manish Kakati
  • 657
  • 5
  • 12
0
votes
1 answer

wit.ai quickstart.js error from node, unexpected token{

I am going through the wit.ai quickstart tutorial and get an error from node (version 4.5.0 LTS), but I don't see the error in the code and also, it is the example code downloaded directly from wit.ai: examples\quickstart.js:39 const {sessionId,…
Dan
  • 115
  • 1
  • 3
0
votes
1 answer

Wit.ai seems to be jumping randomly between stories

I have two separate simple stories on my Wit.ai bot, the first one takes in the word "Debug", sends "test" then runs a function that outputs context stuff to the console called test_context() the second one takes in an address, runs a function that…
Omnidip
  • 1
  • 1
0
votes
1 answer

Wit.ai - 'Thank you’ being detected as search query always. Even after training it for entity

I have created a new app in wit.ai. In stories, I have created entity with different intents. Here I used 'Thank you' as a different intent. But when I send 'Thank you' to wit, it considers it as a search query instead of the entity which I created.…
Newbie7988
  • 143
  • 2
  • 10
0
votes
1 answer

The context key is not initialised if it’s not in reply - wit.ai

I have created a new app in wit.ai. In stories, after the 'User says', I have added a function getReply() using 'Bot executes' and added two context keys with branch in it. If both the keys are available, I'm sending a reply to the user using the…
Newbie7988
  • 143
  • 2
  • 10
0
votes
0 answers

Extract personal id number on a Wit.ai story

I have a story that asks the user for its personal id number and i'm getting troubles to extract that value from the user input. My story is very simple, it just asks the user for that value. I used the builtin entity wit/number and (here goes the…
0
votes
1 answer

Trying to develop stories in wit.ai that differ between how vs why

I am building out my wit.ai app to handle a variety of questions from a user. Everything is going fine but my wit.ai is starting to get confused around 'how' vs 'why' questions. I'm looking for the best way to structure these with…
JonnyTee
  • 1
  • 1