Ai Dreams Forum

Chatbots => General Chatbots and Software => Topic started by: Awais Shahid on December 26, 2016, 06:10:41 am

Title: Building a Chatbot
Post by: Awais Shahid on December 26, 2016, 06:10:41 am
Hello
I am new in Machine Learning. I want to build a chatbot.
anyone who can guide me how do I start. which language to use which AI techniques to use??
Title: Re: Building a Chatbot
Post by: Art on December 26, 2016, 03:03:09 pm
You might look into a site http://www.pandorabots.com/ (http://www.pandorabots.com/)

I think you could have a bot constructed and up in less than half an hour.
Of course, making it a really good bot is going to take more time. O0
Title: Re: Building a Chatbot
Post by: Freddy on December 26, 2016, 04:44:47 pm
Or just read the replies to your other post where you asked the same question.....
Title: Re: Building a Chatbot
Post by: kei10 on December 26, 2016, 05:49:52 pm
Yep, a double post...
Title: Re: Building a Chatbot
Post by: Awais Shahid on December 27, 2016, 07:06:03 am
I'm trying to build my own writing up an algorithm in .net.
pandorabot will give me platform to build a customize bot. I want to code my self
Title: Re: Building a Chatbot
Post by: infurl on December 27, 2016, 08:57:14 am
I'm trying to build my own writing up an algorithm in .net.
pandorabot will give me platform to build a customize bot. I want to code my self

Have you had a look at ChatScript? It is in the form of C/C++ libraries which you could probably call from your platform of choice. It is supported by the author Bruce Wilcox over on the chatbots.org website forum.

If it is your intention to build an engine from scratch, which is what I'm doing, it will take a very very long time.
Title: Re: Building a Chatbot
Post by: Art on December 27, 2016, 10:18:35 pm
I kind of thought it was him that asked a similar question but then again, I was too tired to go searching...Oh well...I guess now he's got two answers to go on!
Title: Re: Building a Chatbot
Post by: 8pla.net on January 14, 2017, 02:57:42 am

      Example:


Code
<html>
<body>
<button onclick="AI()">Chatbot</button>
<p id="output"></p>
<script>
function AI() {
    var stimulus = "I say hello as stimulus.";
    var response = stimulus.match(/\bHELLO\b/gi);
    if(response){
    document.getElementById("output").innerHTML = "Greetings";
    }
    else
    {
    document.getElementById("output").innerHTML = "Please go on ";
    }
}
</script>
</body>
</html>

Start simple.  Learn about computer input, match, and output.  Keep improving.
Title: Re: Building a Chatbot
Post by: oliverfischer on January 17, 2018, 02:19:25 pm
I thought that chatbots are innovation in the world of technology
https://artjoker.net/blog/how-to-make-your-own-chatbots/
This is a very good article for me.