Questions tagged [chatbot]

A chatbot is an automated program that communicates with humans. Abilities can range from canned responses, to neural networks and other learning programs, to responding to commands.

There are different kinds of chatbots: Those that try to appear to be human, those that perform useful tasks for the participants or administrators of the chat (like posting links to an faq in regular intervals) and those that exists only for the fun of someone, similar to the twitterbot big_ben_clock

4197 questions
5
votes
2 answers

Botframework Composer Custom Action not registered in factory

I have an existing bot. I have added a custom action as described in the official docs. When the bot is started, only the errormessage: mybot.dialog error: Type Mycustomaction not registered in factory. is displayed in the chat window. Initially…
foobarbaz
  • 322
  • 6
  • 17
5
votes
4 answers

Chatterbot : AttributeError: module 'time' has no attribute 'clock'

I am trying to create a chatbot, but since latest version of chatterbot was not getting installed on my pc so I installed chatterbot by using pip install chatterbot==1.0.4 and the following error is showing up. How do I resolve this? Below is the…
Tanish Batham
  • 53
  • 1
  • 7
5
votes
2 answers

ERROR conda.core.link:_execute(698): An error occurred while installing package 'defaults::icu-58.2-ha925a31_3'

I created environment using anaconda prompt conda create -n talkingbot python=3.5 then install pip install tensorflow==1.0.0 (followed same command as used in one udemy course) but when I tried to install spyder using conda install spyder then it…
5
votes
1 answer

Link to a telegram bot with pre-written command

I'm writing a telegram bot now and I have a question. As I know any user can link to a bot using "@" symbol, like this @my_bot. Is there any possibility to make such a link, that when a user click on it, not only he is redirected to this bot, but…
barmirbar
  • 93
  • 1
  • 3
5
votes
2 answers

TypeError: Expected any non-tensor type, got a tensor instead

I Was following a post on 'Training a transformer model for a chatbot with TensorFlow 2.0'. I have encountered an error on my local machine although the code seems to work fine in colab. Below is the code snippet. def encoder_layer(units, d_model,…
botaskay
  • 144
  • 1
  • 1
  • 7
5
votes
1 answer

Multitenancy in Google Dialogflow

My company is currently trying to build a multitenant chatbot using Google Dialogflow. We're exploring the tools at our disposal, but the documentation on the topic is still a bit scarce. Our understanding and definition of multitenancy, in this…
5
votes
1 answer

Bot greeting stops working when adding QnA Maker resource

Using the awesome resources provided by Microsoft. Following the documentation at https://learn.microsoft.com/en-us/composer/ Create Folder somewhere Perform https://learn.microsoft.com/en-us/composer/setup-yarn in that folder Perform…
5
votes
3 answers

Carousel in adaptive card

Please guide me to create carousel adaptive card in MS bot framework. I am using .Net sdk.I tried using adaptive card designer to design but couldn't do it.
Joel Abraham
  • 53
  • 1
  • 4
5
votes
1 answer

Can Dialogflow response time limit be modified?

I am making a bot on dialogflow with a webhook. I get an error : DEADLINE_EXCEEDED. My webhook takes a bit over 5 seconds to return a response. Is there a way to allow a longer time than 5 seconds ?
5
votes
0 answers

MS Teams mobile: sending and receiving a geolocation

Tested on the latest versions of MS Teams for Iphone and Android. 1 MS Teams for Android can send a geolocation for a bot into 1-1 chat, but MS Teams for Iphone doesn't has such option. How can I send a geolacation in Iphone? Here you see the…
John Walker
  • 105
  • 1
  • 3
5
votes
1 answer

Storing/Sending information from a skill to the Microsoft virtual Assistant

I’m using the Microsoft Bot framework ( 4.x) and we have the virtual assistant set up along with a few skills. We are currently trying to have a user interrupt their current dialog in a particular skill and jump to a new one. We want to add…
39fredy
  • 1,923
  • 2
  • 21
  • 40
5
votes
2 answers

Can we add text field dynamically

I've created an adaptive card(using json) in my chatbot that takes input from users. I want to add a button that enables the user to add a new text field every time the user clicks on the insert field. (i.e., the user can click on insert button to…
Priya G
  • 63
  • 1
  • 5
5
votes
1 answer

How can I use offline-directline for Microsofts Botframework v4?

I need to run the microsoft botframework v4 on-premise since company internal restrictions forbid me to register the bot on Microsoft Azure or use the connector in the cloud. My idea is to use offline-directline to emulate the connector locally. To…
5
votes
1 answer

I'm getting error when using the chatterbot in python 3.x

So this was my code: from chatterbot.trainers import ListTrainer from chatterbot import chatbot bot = chatbot('Dona') conv = open('sample.txt', 'r').readlines() bot.set_trainer(ListTrainer) bot.train(conv) while True: query = input("You: ") …
5
votes
1 answer

How to connect webhook of my local to dialogflow?

I have a question about webhook connect. I edited usually by inline editor of dialogflow. But now I want to edit in my local. So I did some setting watching two…
DD DD
  • 1,148
  • 1
  • 10
  • 33