create account

Let's build a chatbot together, introduction to bots by tobias-g

View this thread on: hive.blogpeakd.comecency.com
· @tobias-g · (edited)
$24.30
Let's build a chatbot together, introduction to bots
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515251639/bqse0unw06hllwjvzo0k.png)

So because many of my posts are going to be about Artifical Intelligence and I thought it would be a good idea to create a tutorial that shows you how to build one of the most talked about trends from 2017, the chatbot.

This tutorial will be aimed at beginners with no coding experience who wish to learn how to create a chatbot for their company, blog or personal website. The subject matter for this tutorial will be taken from some steemit faq.

If you don't know already a chatbot is a computer program designed to simulate a conversation with human users, this means that a human is able to talk to a computer like a human and the computer will respond in a similar manner. Now by the end of the tutorial, we will only have the beginning of a chatbot, but you should have the knowledge and tools to take this further. If this post is a success I will write further tutorials on how to improve it into a deployable service.

Firstly in order to create this chatbot, we will need to use a chatbot provider, after all, I did say that we wouldn't need to write any code. For this tutorial we will be using dialogflow (https://dialogflow.com/) for anyone who doesn't know what dialogflow is here a short introduction:

> Dialogflow (formerly Api.ai, Speaktoit) is a developer of human-computer interaction technologies based on natural language conversations. The company is best known for creating the Assistant (by Speaktoit), a virtual buddy for Android, iOS, and Windows Phone smartphones that perform tasks and answers users' question in a natural language. Speaktoit has also created a natural language processing engine that incorporates conversation context like dialogue history, location, and user preferences. Source: Wikipedia (https://en.wikipedia.org/wiki/Dialogflow)

Essentially they will provide us with the tools we need, I will teach you how to use them. It's important to note I am no way affiliated with them, actually, I work for a company in this space who offers tools similar to this but due to dialogflow' slick and easy to use UI I thought I would use them for the tutorial. 

#### Step 1: Let's sign up for https://dialogflow.com/ 

First of all your going to need an account, so let's go to https://dialogflow.com/ and click on sign up for free. Oh yeah, I forgot to mention this is totally free :)

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515252687/iyisjagef0nhxlpibrew.png)

Once clicked, you will be asked to sign in with your Google account if you don't have one of these you can sign up by clicking more options and then create an account on the sign in page. Follow the sign-up options and there you have it you're ready to begin building your bot. 

### Step 2: Creating your agent

So now you're signed in your screen should look something like this:

 ![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515254007/fumkzk9k9mhtosmekwf3.png)

The first thing we want to do is to create an agent, this is where we'll teach the bot everything it needs to know. Click on create an agent to get started, you will be presented with a list of options. The only thing you need to enter for this demo is the agent name, you can leave the rest of the options set to default. We're going to call our bot: 

`myFirstSteemItBot`

When you're done, click save and we're ready to start teaching our chatbot all about steemit. 

### Step 3: Understanding Intents

After you've created your agent you will be navigated to the following page:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515254868/bzzpknpwd5eysrvffzcl.png)

As you can see the page is broken down into three main areas, the left which holds the navigation and what we'll use to navigate between the various different features dialogflow has to offer, the centre that contains your main working area and on the right you have the ability to test your bot (we'll come back to this later). The first page that you'll be taken to is the intents page, this is where we'll teach the chatbot how it should respond to a users input. As you can see on this page, dialog flow has given you a selection of pre-made intents. These include:

1. Default Fallback Intent
2. Default Welcome Intent

The default fallback intent is used as a catch-all to everything that the chatbot hasn't been trained to understand, we'll come back to this later but first, let's take a look at the default welcome intent. Click on the default welcome intent and you'll be taken this page:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255338/skdqfcthcr3ew8wkyi8g.png)

This intent has been created by dialogflow to help you get started and is used to welcome new users to your chatbot before it's ready to use we will need to changes to it. So let's take a look:

Below you can see user says section, this represents where you should configure what your users might say to trigger this intent. 

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255402/mpbprpqqsmfwdxoilmoi.png)

For example in this scenario we can add the following:

`Hi`
`Hello`
`Howdy`

It should look like this:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255647/zwpijjw6oiciz5j850yi.png)

What we've basically done is tell the bot that when a user says Hi, Hello or Howdy it should respond based on the information we enter within this intent. So we've figured out when a user says Hi, Hello or Howdy the bot is going to reply, but how is it going to reply you ask. Let's get that sorted out. 

On the intents page, you will be able to see a section called "Response" it will look like this:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255828/flkl7e2skmujrte0fmso.png)

As you can see it has already been configured with a selection of different response the bot might say in response to Hi, Hello & Howdy. Let's delete all of those by clicking the trash icon located on the right of the header and create our own, personalized response.

So once you have deleted all of the pre-built response we want to add our own you can do this by clicking on the add content button  and click text response:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255949/zsnlly4xq2rbw6lx0epb.png)

This will configure a new response for the bot, let's enter 

`Hello, I'm the new Steemit bot. How can I help you?`

Now we've entered a response we need to save our intent you can do this by clicking save at the top of the page, once you've pressed save it will tell you that your intent has been saved and then that training has begun. 

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515256179/osayhcvbgaqgo3uc8fn3.png)

This should only take a couple of seconds to complete and you should see it change to training complete. 

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515256262/p0ceee7gwtf5aspljsn5.png)

So now the chatbot has been trained we can test it out, you can do this within the test experience area located on the right-hand side of the page. 

Where it says try it now you can enter the text you wish to test your bot out with. Let's enter the following and hit enter/return.  

`Hello`

You will see the following results displayed:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515256988/wuxi9utwrc2i60zzhbgk.png)

This means that the system will return that response in relation to the input you entered. As you can see this is what we entered earlier, but let's ask it something else. 

`What is steemit?`

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515257116/oieu6chxvxlmodedwuwl.png)

As you can see the bot returned "Sorry, can you say that again?" yours may say one of the following:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515257197/eu646dntel8dksrp7bii.png)

This is because the bot wasn't able to match "What is steemit?" with anything trained within our intents and instead displayed the fallback intent that we saw earlier in the pre-built intents. You can edit these fallback responses by clicking on intents located on the left-hand side and then selecting the fallback intent similarly to how we did before. For now, I won't be making any changes to these, but you can if you'd prefer to personalize them. 

So great, now we have the first part of our chatbot. We've got it working and have an introduction. Let's add some information about steemit next. 

#### 4: Let's teach the chatbot

Firstly we're going to need some information for our chatbot, to begin with, I'm going to take information from the steemit FAQ in order to teach the chat the bot all about steemit, you can find the link to that below. 

https://steemit.com/faq.html - Thanks @steemit

When you enter the page mentioned above you can see that there is a list of frequently asked questions about steemit, perfect training material for our chatbot. 

In order to create a new intent, you should first click on "create intent" which is located at the top of the intents page, when pressed you'll be taken to the intents page that we saw earlier. I will walk you through the first one and from there you should be good to go. 

Let's look at the question "What is Steemit.com?" on the faq, on the intents page enter "What is Steemit.com?" into the user says section, like before this will indicate that this intent should be triggered when a user says "What is Steemit.com?", but wait a minute this also answers the question we entered earlier that the chatbot didn't recognize for "What is Steemit?", let's add that too. Essentially, within user says we should try to replicate all of the different ways a user may ask a question so that our chatbot is able to understand a user a user in a variety of different ways. I have entered a few different variations. 

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329309/tyi5ltwdjv8sujewtgu8.png)

After we've completed user says, we should move on to respond, here we want to take the answer from the faq and copy and paste it in. 

`Steemit is a social network and content rewards platform that makes the crowd the beneficiaries of the attention economy. It does this be rewarding users with STEEM. Steemit has redefined social media by building a living, breathing, and growing social economy; a community where users are getting rewarded for sharing their voice.`

It should look like this:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329427/zvsxz5bdaw0q8cjc9dln.png)

Now for this but we don't need to worry about any of the other sections on this page, so we're ready to hit save and it will go into training. Once it has been trained you'll be able to test out the experience similar to how we did before. 

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329621/rmprqisxvvl99wbr2rwp.png)

I have repeated this process for the following questions within the faq, but I'll leave those up to you to fill in :) 

1. How does Steemit work?
2. How does Steemit differ from other social media websites?
3. Does it cost anything to post, comment, or vote?
4. Can I earn digital tokens on Steemit? How?
5. Where do the tokens come from?
6. Where does the value come from?
7. Why are people getting vastly different rewards?

When you're done your intents page should look similar to this:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330995/e8gz9sbv6sxubn07ikmd.png)


#### 4: Let's see it have a conversation

So great, we've trained our chatbot with information about steemit, but how do we test this in an actual conversation. To do this we want to click on "Integrations" located on the left-hand menu. 

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329886/pswihbjw6j4zafdmribh.png)

When you've reached this page you want to select "Web Demo" when will be presented with a page that will look like this:

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330791/tkpy6tnswyojp50k3jg8.png)

Click enable by clicking on the toggle located at the top right of the pop-up. When you've done that you'll be presented with this.

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330100/uzsnwd6dyxj772ysd4hk.png)

Copy and paste the URL into your browser and it will launch your demo, mine is: https://bot.dialogflow.com/375e47e3-9597-49d1-b860-fb02ac5e2727

Once launched you can ask all of the intents you've trained it against earlier, take a look at mine below.
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330263/gonffy29cgfjn8gwaite.png)

There you have it, you have the beginning of a working chatbot that is able to answer questions and answers about steemit. 

#### 5: What we built

Now it's important to remember that anyone who uses the test link this is the very beginning of a chatbot and isn't trained to a production-ready standard, that requires hours of user testing along with subject matter experts and previous user conversations, you'll likely find that it breaks more than it works due to low amounts of training data that I've included. This instead was supposed to show that it's easy to build a chatbot yourself, all you needed was me to give you the knowledge to do it :)

#### 6: What I didn't mention...

Now I realize that I didn't mention a barrage of different things that are included within the dialogflow platform and there's a reason for that, I simply didn't want to confuse you with all of the different things that are there all at once and of course I need some content for future posts too ;) 

###### Want proof I created it?

Ask the chatbot "Who created you?" :)

###### Need help?

If you need help, don't worry just ask in the comments and I'd be happy to help you out :) 

###### What's next?

If you liked this tutorial this is only the start of what I can teach you, I just thought this would be a good introduction. If you would like more see more tutorials please let me know me in the comments :)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authortobias-g
permlinklet-s-build-a-steemit-chatbot-together-introduction-to-bots
categorytechnology
json_metadata{"community":"busy","app":"steemit/0.1","format":"markdown","tags":["technology","ai","steemit","bots","tutorial"],"users":["steemit"],"links":["https://dialogflow.com/","https://en.wikipedia.org/wiki/Dialogflow","https://steemit.com/faq.html","https://bot.dialogflow.com/375e47e3-9597-49d1-b860-fb02ac5e2727"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1515251639/bqse0unw06hllwjvzo0k.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515252687/iyisjagef0nhxlpibrew.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515254007/fumkzk9k9mhtosmekwf3.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515254868/bzzpknpwd5eysrvffzcl.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255338/skdqfcthcr3ew8wkyi8g.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255402/mpbprpqqsmfwdxoilmoi.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255647/zwpijjw6oiciz5j850yi.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255828/flkl7e2skmujrte0fmso.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515255949/zsnlly4xq2rbw6lx0epb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515256179/osayhcvbgaqgo3uc8fn3.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515256262/p0ceee7gwtf5aspljsn5.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515256988/wuxi9utwrc2i60zzhbgk.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515257116/oieu6chxvxlmodedwuwl.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515257197/eu646dntel8dksrp7bii.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329309/tyi5ltwdjv8sujewtgu8.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329427/zvsxz5bdaw0q8cjc9dln.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329621/rmprqisxvvl99wbr2rwp.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330995/e8gz9sbv6sxubn07ikmd.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515329886/pswihbjw6j4zafdmribh.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330791/tkpy6tnswyojp50k3jg8.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330100/uzsnwd6dyxj772ysd4hk.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1515330263/gonffy29cgfjn8gwaite.png"]}
created2018-01-07 13:41:45
last_update2018-01-07 23:54:54
depth0
children23
last_payout2018-01-14 13:41:45
cashout_time1969-12-31 23:59:59
total_payout_value18.582 HBD
curator_payout_value5.715 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14,153
author_reputation101,057,581,296,921
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,763,621
net_rshares2,397,199,433,672
author_curate_reward""
vote details (40)
@alalahamed345 ·
good post @alalahamed345
properties (22)
authoralalahamed345
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t140746950z
categorytechnology
json_metadata{"tags":["technology"],"users":["alalahamed345"],"app":"steemit/0.1"}
created2018-01-07 14:07:48
last_update2018-01-07 14:07:48
depth1
children0
last_payout2018-01-14 14:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation-723,430,293,258
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,768,629
net_rshares0
@anupbose ·
Your post has been Resteemed @tobias-g I offer free resteem for all
properties (22)
authoranupbose
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t175657216z
categorytechnology
json_metadata{"tags":["technology"],"users":["tobias-g"],"app":"steemit/0.1"}
created2018-01-07 17:56:57
last_update2018-01-07 17:56:57
depth1
children2
last_payout2018-01-14 17:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation2,058,170,729,221
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,810,981
net_rshares0
@juliusjamex ·
Kindly help me to resteem my post
Am still a minnow
https://steemit.com/motivation/@juliusjamex/just-for-today
properties (22)
authorjuliusjamex
permlinkre-anupbose-re-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t190621615z
categorytechnology
json_metadata{"tags":["technology"],"links":["https://steemit.com/motivation/@juliusjamex/just-for-today"],"app":"steemit/0.1"}
created2018-01-07 19:06:30
last_update2018-01-07 19:06:30
depth2
children0
last_payout2018-01-14 19:06:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation202,973,235,038
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,823,452
net_rshares0
@udembahenry ·
Hello. Please kindly help me resteem mine

https://steemit.com/health/@udembahenry/common-fruits-to-help-you-lose-weight-and-burn-fats
Thanks
properties (22)
authorudembahenry
permlinkre-anupbose-re-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180109t061928325z
categorytechnology
json_metadata{"tags":["technology"],"links":["https://steemit.com/health/@udembahenry/common-fruits-to-help-you-lose-weight-and-burn-fats"],"app":"steemit/0.1"}
created2018-01-09 06:19:36
last_update2018-01-09 06:19:36
depth2
children0
last_payout2018-01-16 06:19:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation2,786,854,119,955
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,180,342
net_rshares0
@appreciator ·
<p>This post has received gratitude of 0.72 % from @appreciator thanks to: @tobias-g.</p>
properties (22)
authorappreciator
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180109t112610903z
categorytechnology
json_metadata{"tags":["technology"],"app":"drotto/0.0.3rc1"}
created2018-01-09 11:26:48
last_update2018-01-09 11:26:48
depth1
children0
last_payout2018-01-16 11:26:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation55,801,543,512,306
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,229,389
net_rshares0
@azizulhassan ·
i think its amazing
properties (22)
authorazizulhassan
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t135739967z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-01-07 13:58:00
last_update2018-01-07 13:58:00
depth1
children0
last_payout2018-01-14 13:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation858,685,273,941
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,766,636
net_rshares0
@echosupport ·
You’re receiving a generous vote from @echosupport and @journeyoflife on behalf of the @echowhale team
properties (22)
authorechosupport
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180110t004641253z
categorytechnology
json_metadata{"tags":["technology"],"users":["echosupport","journeyoflife","echowhale"],"app":"steemit/0.1"}
created2018-01-10 00:46:42
last_update2018-01-10 00:46:42
depth1
children0
last_payout2018-01-17 00:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation1,348,442,189,561
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,372,586
net_rshares0
@entrepreneur916 ·
Incredible article, this is awesome. Will be trying it out. 

100% upvote and following!
properties (22)
authorentrepreneur916
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t143637804z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-01-07 14:36:36
last_update2018-01-07 14:36:36
depth1
children0
last_payout2018-01-14 14:36:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation8,835,700,734,064
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,774,567
net_rshares0
@fazlehassan ·
great information your writing style is very unic wish you best of luck keep this type posting becuse we waiting for your post @Resteemed
πŸ‘  ,
properties (23)
authorfazlehassan
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t141607797z
categorytechnology
json_metadata{"tags":["technology"],"users":["resteemed"],"app":"steemit/0.1"}
created2018-01-07 14:16:12
last_update2018-01-07 14:16:12
depth1
children0
last_payout2018-01-14 14:16:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation84,384,929,568
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,770,310
net_rshares744,874,110
author_curate_reward""
vote details (2)
@jaysermendez ·
Nice start! but not really a "Steemit" bot. Seems more like a hardcode bot. Why? because it is closed to certain actions and it is not currently parsing data from the Steem blockchain. For example, if I ask current price of the token or something about an user in the blockchain, the bot should not be able to tell this information. However, it can be done by implementing a server side to parse this kind of information and maybe a neural network to make the bot learning about its users. So, it can sounds more natural and can learn over the time.
πŸ‘  ,
properties (23)
authorjaysermendez
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t221236196z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-01-07 22:12:36
last_update2018-01-07 22:12:36
depth1
children2
last_payout2018-01-14 22:12:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length549
author_reputation20,790,862,502,465
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,854,714
net_rshares2,012,077,382
author_curate_reward""
vote details (2)
@tobias-g · (edited)
$0.02
You have a good point, the title could be slightly misleading due to you being able to build bots on top of the blockchain, I will make an adjustment to the title. 

You're right though, this bot could be easily adjusted to understand those question those questions related to users or the prices of steem through integrating with the steem API/a currency API (I haven't looked at docs but assume it's all available due to the apps being built on it). I only really wanted to give an introduction to bots in this post because as soon as you start mentioning code some users will lose interest and thought it would still be useful. My hope is that I can do more and more and show people how to build more advanced bots :)
πŸ‘  ,
properties (23)
authortobias-g
permlinkre-jaysermendez-re-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t222912593z
categorytechnology
json_metadata{"tags":["technology"],"community":"busy","app":"busy/2.2.0"}
created2018-01-07 22:29:12
last_update2018-01-07 22:29:27
depth2
children1
last_payout2018-01-14 22:29:12
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length720
author_reputation101,057,581,296,921
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,857,300
net_rshares2,543,360,278
author_curate_reward""
vote details (2)
@jaysermendez ·
As I said, nice start man! I got your point and your intentions are really good! keep it up! Also, why should users be scared about code? πŸ™ƒ I will be following up your steemit chat bot :) So, for the next one include a unique tag so I can easily follow it :)
properties (22)
authorjaysermendez
permlinkre-tobias-g-re-jaysermendez-re-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t235918624z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-01-07 23:59:18
last_update2018-01-07 23:59:18
depth3
children0
last_payout2018-01-14 23:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length258
author_reputation20,790,862,502,465
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,871,122
net_rshares0
@kylorenjunior ·
good article
properties (22)
authorkylorenjunior
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180108t214234317z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-01-08 21:42:33
last_update2018-01-08 21:42:33
depth1
children0
last_payout2018-01-15 21:42:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation-118,699,596,705
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,092,864
net_rshares0
@minnowhelper ·
<p>This post has received a 9.65 % upvote from https://steemitimages.com/DQmcZYv2276nr6zEDDTZY1iLcgaBiNqumAnYtmvxNtr5zrW/minnow_klein.png thanks to: @tobias-g. <br>For more information, <a href="http://www.minnowhelper.com/index.php">click here!!!</a>!<br>
<b>Send minimum 0.100 SBD to bid for votes.</b>
<br></p>

<h2>Before sending a transfer to @minnowhelper, verify that your publication meets these conditions (http://www.minnowhelper.com/conditions.php). After the transfer is made, no claims will be received.</h2>


<p><br>
The Minnowhelper team is still looking for investors (Minimum 10 SP), if you are interested in this, read the conditions of how to invest <a href="http://www.minnowhelper.com/delegate.php">click here!!!</a><br>
ROI Calculator for Investors <a href="http://www.minnowhelper.com/delegatecalc.php">click here!!!</a></p>
properties (22)
authorminnowhelper
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t204108080z
categorytechnology
json_metadata{"tags":["technology"],"app":"drotto/0.0.2d"}
created2018-01-07 20:41:18
last_update2018-01-07 20:41:18
depth1
children0
last_payout2018-01-14 20:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length849
author_reputation1,661,837,763,661
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,839,806
net_rshares0
@resteemable ·
**Your Post Has Been Featured on @Resteemable!** <br> Feature any Steemit post using resteemit.com! <br> **How It Works:** <br> 1. Take Any Steemit URL <br> 2. Erase `https://` <br> 3. Type `re`<br> Get Featured Instantly – Featured Posts are voted every 2.4hrs <br>[Join the Curation Team Here](streemian.com/profile/curationtrail/trailing/943)
properties (22)
authorresteemable
permlinkre-resteemable-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180111t101557037z
categorytechnology
json_metadata""
created2018-01-11 10:15:57
last_update2018-01-11 10:15:57
depth1
children0
last_payout2018-01-18 10:15:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation711,299,530,826
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,718,048
net_rshares0
@rongabby ·
This is actually informative in many way, for me a newbie for steemit and i do not have a background on making bots or even on programing it is very useful. I could just look up to this post and then i should be able to make one. Thia posts is what steem needs in order to make it a beautiful site
properties (22)
authorrongabby
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180110t112850951z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-01-10 11:29:06
last_update2018-01-10 11:29:06
depth1
children0
last_payout2018-01-17 11:29:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length297
author_reputation-91,514,034,394
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,475,834
net_rshares0
@sleeplesswhale ·
<p>This post has received a 27.03 % upvote from @sleeplesswhale thanks to: @tobias-g.</p>
properties (22)
authorsleeplesswhale
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t210312097z
categorytechnology
json_metadata{"tags":["technology"],"app":"drotto/0.0.2d"}
created2018-01-07 21:15:00
last_update2018-01-07 21:15:00
depth1
children0
last_payout2018-01-14 21:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation42,005,712,593
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,845,340
net_rshares0
@tobias-g ·
@originalworks
properties (22)
authortobias-g
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t213253932z
categorytechnology
json_metadata{"tags":["technology"],"community":"busy","app":"busy/2.2.0"}
created2018-01-07 21:32:54
last_update2018-01-07 21:32:54
depth1
children0
last_payout2018-01-14 21:32:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation101,057,581,296,921
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,848,230
net_rshares0
@tobias-g ·
@steem-untalented
πŸ‘  ,
properties (23)
authortobias-g
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180108t231606704z
categorytechnology
json_metadata{"tags":["technology"],"community":"busy","app":"busy/2.2.0"}
created2018-01-08 23:16:06
last_update2018-01-08 23:16:06
depth1
children1
last_payout2018-01-15 23:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation101,057,581,296,921
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,109,271
net_rshares2,074,785,901
author_curate_reward""
vote details (2)
@steem-untalented ·
Hi @tobias
We have given you our still tinnie-winnie upvote!
You have been spotted by a human @tobias-g to possess rare gem!

To remove barriers: Everyone must have something to offer!

#untalented abolishes the conditioning attached to IQ tests e.g smart, dull, bum and you suddenly give every human a chance to shine!

So if Bill Gates did Microsoft and i can do Macro-hard, aren't we both genius? Oh, we both are!

"We are genius!" "We are human!"

Join the steemgigs community on discord

https://discord.gg/CGuPyyT

#untalented is a branch of @steemgigs. If you would like to offer your service in building the dreams of other steemians, you can do so under #steemgigs.

However, if you want to experience full blown freedom and grow in confidence about your gifts and talents, share under #untalented.

We aim to create historical moments in the genre of touching lives and you can support us if you desire, by voting on steemgigs for witness. Simply click here

https://steemit.com/~witnesses

and type steemgigs in the first search box.

See this URL for more info

https://steemit.com/steemit/@surpassinggoogle/steemit-s-untalented-is-in-beta-participate-freely-because-every-participant-in-this-contest-will-win-something-no-losers
https://s19.postimg.org/oijvhmw8j/surpassinggooglegif.gif
Just incase you find any level or form of gifts, talents, attempts at out-of-the-boxness, or any steemian low in confidence about their abilities, worth, etc; please don't let it slip emptily by.

Kindly call on me! Simply reply to any such post and add @steem-untalented or #untalented to your reply and i will be there to upvote, acknowledge, strengthen and encourage them.
properties (22)
authorsteem-untalented
permlinkre-re-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180108t231606704z-20180109t024310
categorytechnology
json_metadata"{"app": "pysteem/0.5.6"}"
created2018-01-09 02:43:12
last_update2018-01-09 02:43:12
depth2
children0
last_payout2018-01-16 02:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,675
author_reputation15,759,942,624,528
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,144,487
net_rshares0
@untapentuoreja ·
@-g CONGRATULATIONS YOUR PUBLICATION HAS BEEN SHARED BY @Untapentuoreja, will be seen by 2259 steemians
properties (22)
authoruntapentuoreja
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180110t000353366z
categorytechnology
json_metadata{"tags":["technology"],"users":["untapentuoreja"],"app":"steemit/0.1"}
created2018-01-10 00:03:51
last_update2018-01-10 00:03:51
depth1
children0
last_payout2018-01-17 00:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation913,006,409,722
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,365,583
net_rshares0
@upme ·
re-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t153920549z
You got a 0.28% upvote from @upme requested by: @tobias-g. <br> Send at least 1.5 SBD to @upme with a post link in the memo field to receive upvote next round. <br> To support our activity, please vote for my master @suggeelson, as a [STEEM Witness](https://steemit.com/~witnesses)
properties (22)
authorupme
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t153920549z
categorytechnology
json_metadata{"app":"postpromoter/1.6.0"}
created2018-01-07 15:39:21
last_update2018-01-07 15:39:21
depth1
children0
last_payout2018-01-14 15:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation584,696,346,293
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,786,879
net_rshares0
@zizaz ·
splended.
properties (22)
authorzizaz
permlinkre-tobias-g-let-s-build-a-steemit-chatbot-together-introduction-to-bots-20180107t205950069z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-01-07 20:59:51
last_update2018-01-07 20:59:51
depth1
children0
last_payout2018-01-14 20:59:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation82,091,258
root_title"Let's build a chatbot together, introduction to bots"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,842,793
net_rshares0