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

Intent recognition using only one intent

I am currently trying to extract from texts some sentences/groups of words that mean "there was an anomaly on this satellite at this date regarding this equipment" using rasa_nlu. I have thought to intent detection because I had already used wit.ai…
0
votes
4 answers

How to add a default text for unmatched intents on dialogflow?

If an intent fails, how can I assign it to a default text response? Bot: what are you looking for? Me: HakunakjewbfeuqcjBWGFUWG Bot will not understand this and throws an error right there! I want to add a default text to this."I am not sure what…
user8650708
0
votes
1 answer

Complex Statements Intent Classification

Consider following sentences: 1) I want to watch movies watched by Srikanth but not by tarun 2) I want to watch movies of Christoper Nolan but not having Christian Bayle 3) I want watch movies watched by Srikanth but not liked by Tarun The problem I…
Tarun
  • 517
  • 4
  • 9
  • 24
0
votes
1 answer

How do I train wit.ai bot to recognize "take server down"?

I'm using wit.ai to create a chatbot to which I can ask to perform simple tasks. For example, I created an entity named action and created a keyword named "shutdown" under action. One of the synonym for "shutdown" is "take down". So, if I…
7_R3X
  • 3,904
  • 4
  • 25
  • 43
0
votes
1 answer

How send voice to wit.ai from Telegram bot

I'm trying to use wit.ai to understand intent and entities in a voice command received from user in a Telegram bot. def discover(bot, update, user_data): voice = bot.getFile(update.message.voice.file_id) voice.download('file.ogg') client…
Francesco
  • 352
  • 1
  • 8
  • 19
0
votes
1 answer

Sending Chunked Audio to Wit.ai

I am attempting to use Wit.ai Speech recognition. I have successfully been able to send a wave file to the website for conversion to text but now I am trying to send it in chunks to reduce latency, but whenever I try to do this It gives me the…
sharpchain
  • 355
  • 2
  • 7
  • 15
0
votes
2 answers

how to send chunked audio data for speech recognition in wit.ai?

I have a large mp3 file(about 1.8GB), which I have to transcribe using wit.ai. Since I am working with wav files a lot, i converted it to wav file. But since wit.ai's speech api can't take more than 10s long audio, I am planning to stream the file…
Surjya Narayana Padhi
  • 7,741
  • 25
  • 81
  • 130
0
votes
2 answers

Accessing wit.ai json data in python

i am working with wit.ai when i request a query in wit i get a response in json format, i want to use the specific value of that responce. my code r = requests.get('https://api.wit.ai/message?v=20160918&q=%s' % speech, …
0
votes
0 answers

Create a Wit.ai conversation flow

How can I create a flow with wit.ai, the documentation says to use the Stories tab, but don't show in my dashboard (and I trying to create a Portuguese bot) Tks
Fabio Ebner
  • 2,613
  • 16
  • 50
  • 77
0
votes
1 answer

Wit AI response for API requests

I'm using wit ai for a bot and I think it's amazing. However, I must provide the customer with screens in my web app to train and manage the app. And here I found a big problem (or maybe I'm just lost). The documentation of the REST API is not…
M.R.M
  • 540
  • 1
  • 13
  • 30
0
votes
0 answers

Python can't find module wit ai

I just coded a Facebook Chatbot running on ngninx ubuntu with pyhthon which worked perfectly until I wanted to add wit.ai to it. The code should work but I think python cant find the module wit although I added it. Here is the console: File…
Sukkzez
  • 1
  • 1
0
votes
1 answer

Android Communicate with wit.ai

I am trying to establish connection with wit.AI using Volley . However, all i am getting is a 400 error. public void makeRequest(String url) { RequestQueue queue = Volley.newRequestQueue(MainActivity.this); StringRequest postRequest = new…
Napmi
  • 521
  • 2
  • 13
  • 32
0
votes
1 answer

Number of entities in FB messenger

is it possible to set the parameter of number of entities somehow so when the messages flow through the webhook, there is more than one appended? I can to it with my own curl with the n parameter, but cannot see anythin in the wit.ai app setting for…
Jan Sila
  • 1,554
  • 3
  • 17
  • 36
0
votes
1 answer

Gupshup NLP Code template with Wit.ai

I'm wondering why this template has still a method which has been deprecated recently and will be no longer used in February: var witContext = {}; witClient.runActions(sessionId, event.message, witContext, (e, context1) => { if (e)…
Pablo DelaNoche
  • 677
  • 1
  • 9
  • 28
0
votes
1 answer

Nodejs + Solution for [wit] [converse] Error: Model not found (404) in 2017?

I'm try to run node-wit/messenger.js and get error: [wit] [converse] Error: Model not found (404) Google tells me I must create a story for the bot. But it was solved in 2016. For now, WIT notification Stories and POST /converse have been…
Lam Kent
  • 11
  • 2