Click here to Skip to main content
15,886,199 members
Everything / Bot

Bot

bot

Great Reads

by Akhil Mittal
Creating a real-time chatbot using Amazon Lex Services and deploying the bot over Facebook messenger
by DaveMathews
Automated Chat bot agent in an ASP.NET website that does not depend on any external API services
by Akhil Mittal
Your first Chatbot using Microsoft’s Bot Framework and Dialog Flow API: Day 1 (Dialogflow and Slack Integration)
by Phil Hopley
Fifth part in a series on a ROS (Robot Operating System) House Bot

Latest Articles

by Nuralem Abizov
Discover how to create your own conversational Telegram bot powered by OpenAI's ChatGPT, with this step-by-step guide designed for beginners.
by Uladzislau Baryshchyk
Creating Amazon Lex bot and connecting with Telegram bot
by Uladzislau Baryshchyk
A walkthrough and source code for creating telegram bot using C# and deploying it on AWS
by AmrDeveloper
How to create a simple bot creator in Kotlin using only 33 lines of code

All Articles

Sort by Score

Bot 

25 Jan 2019 by Akhil Mittal
Creating a real-time chatbot using Amazon Lex Services and deploying the bot over Facebook messenger
26 Aug 2020 by DaveMathews
Automated Chat bot agent in an ASP.NET website that does not depend on any external API services
4 Feb 2019 by Akhil Mittal
Your first Chatbot using Microsoft’s Bot Framework and Dialog Flow API: Day 1 (Dialogflow and Slack Integration)
7 Apr 2019 by Phil Hopley
Fifth part in a series on a ROS (Robot Operating System) House Bot
3 May 2019 by Phil Hopley
Eighth part in a series on a ROS (Robot Operating System) House Bot
13 Mar 2019 by Oana Mancu
Any deterministic game can be broken down to its core functionalities. By understanding them, one can implement fundamental algorithms such as Minimax (with alpha beta pruning), thus paving the way towards a better AI opponent.
5 Feb 2019 by Akhil Mittal
Your first Chatbot using Microsoft’s Bot Framework and Dialogflow API. Integrate with Google Assistant.
23 Apr 2019 by Phil Hopley
Seventh part in a series on a ROS (Robot Operating System) House Bot
10 Mar 2020 by DaveMathews
Using Oscova and Oryzer FBP platform, we'll build an on-device table reservation bot to understand the concepts behind today's offline bot development standards.
15 Apr 2019 by Phil Hopley
Sixth part in a series on a ROS (Robot Operating System) House Bot
7 May 2020 by DaveMathews
Using an on-device bot development framework to integrate a chatbot into unity
22 Jul 2020 by Roman Akhromieiev
How to build a Telegram Bot using Azure functions and Node.js
7 Sep 2020 by DaveMathews
Customizing and building a Plugin for an AI Voice Assistant platform for PC in C#
23 May 2021 by Uladzislau Baryshchyk
A walkthrough and source code for creating telegram bot using C# and deploying it on AWS
11 Aug 2021 by Asif 7969814
Hi, your problem can be solved using Microsoft Bot Framework. you should try at least once. Here are the steps. Step 1: Firstly, you have to install some prerequisite software, Visual Studio 2015 Update 1. Also Update your all Visual Studio...
30 May 2023 by Nuralem Abizov
Discover how to create your own conversational Telegram bot powered by OpenAI's ChatGPT, with this step-by-step guide designed for beginners.
15 Aug 2019 by Richard Deeming
message is a parameter to the on_message function. It it not available outside of that function. UserInput is a local variable within the on_message function. It cannot be used outside of that function. HelpEmbed is a local variable within the displayembed function. It cannot be used outside...
15 Aug 2019 by Patrice T
Quote: Undefined variables, even though they are explicitely defined above? Looks like you need to learn how the "scope of variables" works in Python. When a variable is defined inside a function definition, it exist only inside that function, and anything outside can't see it. Scope - Python...
15 Aug 2019 by Richard MacCutchan
See 9. Classes — Python 3.7.4 documentation#python-scopes-and-namespaces[^] for a full explanation of scopes in Python.
2 Dec 2019 by Munchacho
Okay, so I have this bot I am making for twitter. The goal of the bot is to search for tweets starting with "I'm" and then I want it to copy everything that comes after "I'm." Then respond with "Hi ____________, I'm Dad!" But currently, I am having a key error for my variable in the tweet. ...
2 Dec 2019 by F-ES Sitecore
You probably need something like this; tweet_mode='extended').items(max_tweets): answer = "@{name} Hi {t}, I'm dad!".format(name=tweet.user.screen_name, t=tweet.full_text)
4 Jan 2020 by Muchroom
Created chat/voice bot on Dialogflow and Amazon Lex. It works fine but I have some issues. For example how to deal with unsupported languages. Maybe there is possibility to create tool that could collaborate simoultaneously with such services like Google Dialogflow bot, Amazon Lex bot,...
4 Jan 2020 by RickZeeland
Maybe you can find something useful on GitHub: language-detection · GitHub Topics · GitHub[^]
4 Jan 2020 by Afzaal Ahmad Zeeshan
Quote: For example how to deal with unsupported languages. You can add multiple languages and Google Assistant (or other platforms) will tell Dialogflow what language to use. Read more on this topic here, Languages  |  Dialogflow Documentation  |  Google Cloud[^] Quote: Main target is to...
8 Feb 2020 by Richard MacCutchan
Quote: Where can I find the necessary information It's called research: read books, use Google, take a class ...
24 Feb 2020 by OriginalGriff
Google is your friend: Be nice and visit him often. He can answer questions a lot more quickly than posting them here... A very quick search using your subject as the search term gave some good starting points: how to add chatbot in to website...
6 Jun 2020 by OriginalGriff
Talk to the people who created it: If necessary raise an issue on the project: Issues · soatok/headless-lounge-bot · GitHub[^] as either the project of it's documentation needs revising. We can't help you with this: it needs in depth knowledge...
11 Jul 2020 by Mohamad Moin Zade
from telegram.ext import Updater, CommandHandler from telegram import ReplyKeyboardMarkup updater = Updater(token="") def favor_keyboard(bot, update): # import pdb; pdb.set_trace() chat_id = update.message.chat_id keyboard = [ ...
11 Jul 2020 by Richard MacCutchan
We are not here to write your code. See Welcome to Python Telegram Bot’s documentation! — Python Telegram Bot 12.8 documentation[^] which explains how to use this package.
29 Jul 2020 by CL4Y3R-TR
Hello Dear Helpers my program works as windows form I Have one error help me pls My code private void çek_Click(object sender, EventArgs e) { // Image image = Image.FromFile(@"C:\Users\Sau\Desktop\Dmp-Wr6WwAEQPtp.jpg"); ...
29 Jul 2020 by Garth J Lancaster
I guess the error message is quite clear, it can't locate the element (try working on a system where there were no unique id's/tags etc... bleh) .. try using something like Ranorex Selocity (it's free), install it in Chrome and use it to identify...
10 Aug 2020 by Member 14911434
I've seen step by step guides before on how to set up a bot to email you when a webpage updates but i'm looking for something more immediate? I'm a beginner programmer and i'm looking for a way to program a bot to make a notification sound or...
10 Aug 2020 by Richard MacCutchan
Lots of suggestions here: notify web page update - Google Search[^]
29 Nov 2020 by Member 15006403
I have a problem, when trying to create my bot I get an error that I have not seen in any other forum, would someone know why this happens? the command is: npm install discord.js ...
16 Dec 2020 by Member 15023255
It seems you're missing something in your line keyboard1 = telebot.types.(resize_keyboard = True) it should probably look like this keyboard1 = telebot.types.InlineKeyboardButton(resize_keyboard = True)
17 Apr 2021 by Richard MacCutchan
Start here: The Python Tutorial — Python 3.7.10 documentation[^].
25 Nov 2021 by #realJSOP
Are you using the right version of NuGet? Some packages require a newer version of the tool.
29 Aug 2022 by Dave Kreskowiak
The error message is telling you the database doesn't have a table called "Settings". How do you fix it? Give the SELECT query FROM clause the correct table name, whatever that is.
18 Apr 2021 by AmrDeveloper
How to create a simple bot creator in Kotlin using only 33 lines of code
17 Jun 2021 by Uladzislau Baryshchyk
Creating Amazon Lex bot and connecting with Telegram bot
23 Jul 2020 by Habibur Rony
Basics of the rule-based chatbot, machine-learning chatbot and AI chatbot.
11 Aug 2021 by GinCanhViet
I can't find an example project about bot and user conversation in C#. Something like this: Bot: What's your name? User: Gin Bot: How old are your? User: 19 --bot get the awnsers and update to the database Bot: OK. You're Gin and you 19y old. ...
15 Sep 2023 by robinsonpaul
I am facing a problem. I have to call the bot application from IIS. Is it possible? If yes, how we can invoke the url from a webchat window without going to Azure registration? local url: http://localhost:3978/api/messages What I have tried: ...
6 Jun 2020 by Needle_Ago
Hi all, I recently entered in a community that want to create a Telegram bot that needs to integrate with Twitch and Patreon subscribers. The bot is already created and working, hosted to Heroku. We used this Soatok/headless-lounge-bot to setup...
25 Jan 2023 by Falldoch Hin
A trading robot written in Python that uses machine learning to predict price movements, risk management methods and integration of the CCXT library to connect to cryptocurrency exchanges, as well as a normal network, examples and base code are...
15 Aug 2019 by SourLemonn8
Apparently, python thinks I haven't defined variables UserInput, message and HelpEmbed. @client.event async def on_message(message): UserInput=message.content.split(" ") if len(UserInput)==5: if UserInput[0]=="!tz" or str(610890196199800852) in UserInput[0]: try: ...
16 Dec 2020 by Fyzi
The buttons do not work in the bot, although the libraries are installed and the types are imported. After adding Inline and reply buttons, it began to crash. Here is the code: import telebot from telebot import types import logging import...
4 Mar 2021 by Member 15090605
I am working in Python 3 and Mysql 10.1.13-MariaDB databases I want to display information from the database (select) using the TelegramBot buttons. For example, if in a telegram bot you click on the "Balances" or "Debt" button using a request,...
17 Apr 2021 by aspiringcoder106
I am 100% new to programming and learning Python. I'm trying to build a bot that joins an IRC server where users are posting phone numbers. I've done some Googling but can't find anything like this, although I'm sure it's simple to build since...
27 Jul 2021 by Essoulefou
Hello, To begin, I'm french and I'm sorry for my English ! I need one thing who can send a message via Facebook (like Facebook bot) if a new message (html content? Html difference between last and new page?) Is posted on a forum. BUT I have no...
25 Nov 2021 by Member 15424897
getting error: remote name couldnot be resolved api.nuget.org What I have tried: i have downloaded Microsoft.EntityFrameworkCore.SqlServer npukg from internet machine and pasted into my project
29 Aug 2022 by Liztochek
code: 'ER_NO_SUCH_TABLE', errno: 1146, sqlState: '42S02', sqlMessage: "Table 'project.Settings' doesn't exist", sql: 'SELECT id, loggingGroupId, logsGroupId, allGroupId, requestsGroupId, payoutsChannelId, requestsEnabled,...
25 Jan 2023 by OriginalGriff
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for...