Gossamer Forum
Home : General : Perl Programming :

Artificial Intel.--Chat Bot

Quote Reply
Artificial Intel.--Chat Bot
Does anyone know of a good AI chat bot that is fairly easy to include on a website?

I've looked at http://www.alicebot.org but the good people here at GT know the real scoop on all things web-site related.

Also, if anyone has an AI bot on your site please post the URL.

Thank you all in advance.

Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
why not write your own? would be a good data structure learning project.

-g


s/(\d{2})/chr($1)/ge + print if $_ = '8284703280698276687967';
Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
-g

I'm flattered but that type of programming is way beyond my skill. Okay, I still have trouble with easy Links 2.0 mods and hacks. I'm no where near the programmer for something like what we are talking about here?

All of that is why I'm wondering what others have done or used. I'm trying to avoid re-inventing the wheel if there is a good bot just waiting.

Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
cpan.org

download chatbot::eliza

its one of the most annoying chatbots.. but i think there isn't much choice.. you can edit the file it gets all it's intelligence from.. but you'd die from boredom.

Jerry Su
http://www.jsu07.com
Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
Jerry,

A.L.I.C.E. seems like a better AI and more relevant phrases. But I'm not sure how to get the bot on my website. Eliza is a first generation bot and there has been a lot of improvements.



Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
well.. thats the only perl bot i've seen except for one called ANDY the abominable snowman or something.. which is not very good..

theres one called ultrahal.. umm.. i think i saw this one cause my old web host used to use it for customer support.. i thought it was stupid.. cause it was a bot for customer support for a hosting company! that's worse than AT&T support!!!

anyways.. i'd be like..
Me: Why is my website down?..
Bot: Hello Name, How are you doing?
Me: Good
Bot: Why are you feeling good?

blah

Jerry Su
http://www.jsu07.com
Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
This one http://www.agentland.com/ is the best one I've seen. It still isn't great but I'm trying to put one in the games section of my site. I won't be using it for serious stuff like customer support. I intend it to be an interesting diversion at best.

Chat Bots are kind-a like voice recognition input software. The concept sounds good but when you play with it for a while you think this will be great in 5 or 10 years but it is just an intersting novelty now. Neither one really lives up to the hype.

All I'm looking for is something to capture a few eyeballs for a little while so they'll surf the rest of my site.

Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
Hi everyone,

Please check my website :

http://www.utomo.f2s.com/bots/

I used a CGI Alicebot.
If anyone is interested to develop it with me, please drop me a note (Contact page).


Regards,
Tommy
Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
The A.L.I.C.E. cgi bot looks great. Where do I go to get started?

Quote Reply
Re: Artificial Intel.--Chat Bot In reply to
You've got some cool flash movies there - even if the first one does take ages to load Smile (on a 56k)

I especially like the dancing girl and:

http://www.utomo.f2s.com/main/


Paul
Installations:http://wiredon.net/gt/
Support: http://wiredon.net/forum/

Quote Reply
A.L.I.C.E. Chat Bot looks great on your site In reply to
Tommy,

I am very impressed with the Chat Bot and the interface you've done.

http://www.utomo.f2s.com/bots/

Tell us more about it.

Quote Reply
Re: A.L.I.C.E. Chat Bot looks great on your site In reply to
you should check out the various AI::* modules from CPAN.
the neural net backprop ones are pretty cool for word crunching (which is all the eliza and alice bots do).
you could do some heavy stuff with them.

-g


s/(\d{2})/chr($1)/ge + print if $_ = '8284703280698276687967';