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

There is not stories tab in wit.ai

I am trying to build a chatbot using wit.ai. I have managed to make intent and their values with different questions but i am unable to understand that where to put answer of every intent. I mean how to form a dialogue or conversation system as…
Muhammad Faizan Khan
  • 10,013
  • 18
  • 97
  • 186
0
votes
0 answers

Getting bad request error from wit.ai in unity

I have set these thing in WebRequest HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.wit.ai/speech"); request.Method = "POST"; request.Headers ["Authorization"] = "Bearer " + token; …
Muhammad Faizan Khan
  • 10,013
  • 18
  • 97
  • 186
0
votes
1 answer

wit.ai lacks documentation: missing status management

is there a clear way to understand how the "status" should be set to an intent in wit.ai? Looking at last version of documentation (after changing their approach) it seemed that many things were deprecated (which is fine) but documentation is still…
lordcenzin
  • 339
  • 3
  • 15
0
votes
1 answer

I can't retrieve the intent from my wit.ai call

I am starting to use Wit.ai to enhance a small bot I made. I am able to make a request to the wit.ai by doing: function sendToWitAI($query){ $witRoot = "https://api.wit.ai/message?"; $witVersion = "20170822"; $witURL = $witRoot . "v=" .…
user6673915
0
votes
1 answer

Has wit.ai stopped development on android-sdk

I'm currently looking into NLP and Chatbot frameworks for a personal project of mine when I ran across wit.ai. While it seems very intuitive and developer friendly while also being completely free I do feel doubtful about their android-SDK repo…
0
votes
1 answer

How to use wit.ai with ogg files

I am trying to use the wit.ai speech to text so I will be able to convert recorded audio from whatsapp into text, The problem is that I keep getting error. wit.ai supports 'audio/wav', 'audio/mpeg3', 'audio/ulaw' and 'audio/raw' for the…
Alon Rew
  • 75
  • 1
  • 1
  • 8
0
votes
1 answer

Create new entity in node-wit

As per the wit documentation, in order to create a new entity for a particular Wit app using the HTTP ReST API is mentioned here, is there any possible method to mimic the same using the node-wit module?
Trishant Pahwa
  • 2,559
  • 2
  • 14
  • 31
0
votes
1 answer

How to send push x hours later with Node.js / Heroku / Wit.ai ChatBot on Messenger

I'm developing ChatBots on Messenger with Node.js and Heroku + Wit.ai.My problem : I would like to know if it's possible to send a push XX hours after the last interaction and how to do it. I already have Facebook ID stored in a database. I don't…
0
votes
1 answer

Why are quick replies that I set in wit.ai, not showing when I used Facebook messenger to converse with the bot?

I have been trying to code a chat bot using Node.js, and integrate the app to Facebook. I ran into wit.ai and realized it would be easier to use it as a integration to node.js app. I downloaded Node.js wit.ai SDK and ran it using ngrok it worked…
0
votes
1 answer

Wit AI message API

Can someone please let me know how to make requests to Wit.ai message api. I am struggling with my code. import requests import json import sys from wit import Wit # Wit speech API endpoint API_ENDPOINT = 'https://api.wit.ai/message' q='who are…
user3289968
  • 97
  • 2
  • 12
0
votes
1 answer

'Wit' object has no attribute 'message'

Just trying to experiment with Wit.ai & Python but getting the following error. What am I doing wrong here?? Error: Traceback (most recent call last): File "C:/Python27/mx1.py", line 7, in resp = client.message(my_message) AttributeError:…
user3289968
  • 97
  • 2
  • 12
0
votes
0 answers

How many seconds can wit.ai take the input in speech to text ?

I'm doing the Speech to Text in python. I have mentioned the no.of seconds to take as 500 as I want a continuous speech recognition, but the voice recording is taking only for 5 seconds. So I'm doubting whether it is with the wit api or with my…
MaKr
  • 13
  • 5
0
votes
1 answer

Making API calls from Wit.ai

Our company has been looking for a NLP API to use for a chatbot we have something running for now with wit.ai but I couldn't figure out a way to have it call custom methods in our API or make calls to our API to get user specific information. Is…
Pila
  • 5,460
  • 1
  • 19
  • 30
0
votes
1 answer

Wit.ai node package buggy

I was working with wit.ai today. I was using the node-wit module. But the responses I was acting were very weird. When I used the node-wit module. I got the response as - { "msg_id": "0f4rOWRXQMIhVuf5i", "_text": "what is your name", …
0
votes
1 answer

How do I store user defined values in wit.ai?

I am new to chatbots and using the wit.ai. I had like to store user defined values for future use, such as Name of the user. When the user says his name. It gets stored in a variable that can be used later. Using entities limits me to a predefined…