Building a Chatbot

  • 9 Replies
  • 6162 Views
*

Awais Shahid

  • Roomba
  • *
  • 8
Building a Chatbot
« 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??

*

Art

  • At the end of the game, the King and Pawn go into the same box.
  • Trusty Member
  • **********************
  • Colossus
  • *
  • 5865
Re: Building a Chatbot
« Reply #1 on: December 26, 2016, 03:03:09 pm »
You might look into a site 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
In the world of AI, it's the thought that counts!

*

Freddy

  • Administrator
  • **********************
  • Colossus
  • *
  • 6860
  • Mostly Harmless
Re: Building a Chatbot
« Reply #2 on: December 26, 2016, 04:44:47 pm »
Or just read the replies to your other post where you asked the same question.....

*

kei10

  • It's a honor to meet everyone!
  • Trusty Member
  • *******
  • Starship Trooper
  • *
  • 430
  • Just kidding.
Re: Building a Chatbot
« Reply #3 on: December 26, 2016, 05:49:52 pm »
Yep, a double post...
Greetings, signature.

*

Awais Shahid

  • Roomba
  • *
  • 8
Re: Building a Chatbot
« Reply #4 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

*

infurl

  • Administrator
  • ***********
  • Eve
  • *
  • 1372
  • Humans will disappoint you.
    • Home Page
Re: Building a Chatbot
« Reply #5 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.

*

Art

  • At the end of the game, the King and Pawn go into the same box.
  • Trusty Member
  • **********************
  • Colossus
  • *
  • 5865
Re: Building a Chatbot
« Reply #6 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!
In the world of AI, it's the thought that counts!

*

8pla.net

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1307
  • TV News. Pub. UAL (PhD). Robitron Mod. LPC Judge.
    • 8pla.net
Re: Building a Chatbot
« Reply #7 on: January 14, 2017, 02:57:42 am »
  • INPUT STIMULUS
  • MATCH STIMULUS AND RESPONSE
  • IF MATCH THEN OUTPUT RESPONSE ELSE OUTPUT RANDOM

      Example:

  • INPUT HELLO
  • MATCH HELLO AND GREETINGS
  • IF MATCH HELLO THEN OUTPUT GREETINGS
      ELSE OUTPUT PLEASE GO ON

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.
« Last Edit: January 14, 2017, 03:28:35 am by 8pla.net »
My Very Enormous Monster Just Stopped Using Nine

*

oliverfischer

  • Roomba
  • *
  • 1
Re: Building a Chatbot
« Reply #8 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.

 


Requirements for functional equivalence to conscious processing?
by DaltonG (General AI Discussion)
November 19, 2024, 11:56:05 am
Will LLMs ever learn what is ... is?
by HS (Future of AI)
November 10, 2024, 06:28:10 pm
Who's the AI?
by frankinstien (Future of AI)
November 04, 2024, 05:45:05 am
Project Acuitas
by WriterOfMinds (General Project Discussion)
October 27, 2024, 09:17:10 pm
Ai improving AI
by infurl (AI Programming)
October 19, 2024, 03:43:29 am
Atronach's Eye
by WriterOfMinds (Home Made Robots)
October 13, 2024, 09:52:42 pm
Running local AI models
by spydaz (AI Programming)
October 07, 2024, 09:00:53 am
Hi IM BAA---AAACK!!
by MagnusWootton (Home Made Robots)
September 16, 2024, 09:49:10 pm
LLaMA2 Meta's chatbot released
by spydaz (AI News )
August 24, 2024, 02:58:36 pm
ollama and llama3
by spydaz (AI News )
August 24, 2024, 02:55:13 pm
AI controlled F-16, for real!
by frankinstien (AI News )
June 15, 2024, 05:40:28 am
Open AI GPT-4o - audio, vision, text combined reasoning
by MikeB (AI News )
May 14, 2024, 05:46:48 am
OpenAI Speech-to-Speech Reasoning Demo
by MikeB (AI News )
March 31, 2024, 01:00:53 pm
Say good-bye to GPUs...
by MikeB (AI News )
March 23, 2024, 09:23:52 am
Google Bard report
by ivan.moony (AI News )
February 14, 2024, 04:42:23 pm
Elon Musk's xAI Grok Chatbot
by MikeB (AI News )
December 11, 2023, 06:26:33 am

Users Online

318 Guests, 0 Users

Most Online Today: 497. Most Online Ever: 2369 (November 21, 2020, 04:08:13 pm)

Articles