
AI::MegaHAL - Perl interface to the MegaHAL natural language conversation simulator.

use AI::MegaHAL;
my $megahal = AI::MegaHAL->new('Path' => './', 'Banner' => 0, 'Prompt' => 0, 'Wrap' => 0, 'AutoSave' => 0);
my $text = $megahal->initial_greeting();
$text = $megahal->do_reply($message);
$megahal->learn($message);

Conversation simulators are computer programs which give the appearance of conversing with a user in natural language. Such programs are effective because they exploit the fact that human beings tend to read much more meaning into what is said than is actually there; we are fooled into reading structure into chaos, and we interpret non-sequitur as valid conversation.
This package provides a Perl interface to the MegaHAL conversation simulator written by Jason Hutchens.

$megahal = AI::MegaHAL->new('Path' => './', 'Banner' => 0, 'Prompt' => 0, 'Wrap' => 0, 'AutoSave' => 0);
Creates a new AI::MegaHAL object. The object constructor can optionaly receive the following named parameters:

$text = $megahal->initial_greeting();
Returns a string containing the initial greeting which is created by MegaHAL at startup.
$text = $megahal->do_reply($message);
Generates reply $text to a given message $message.
$megahal->learn($message);
Learns from $message without generating a response

None known at this time.

POE::Component::AI::MegaHAL - IRC bot, http://teaandbiscuits.org.uk/drupal/node/65 - Irssi IRC bot

The Perl AI::MegaHAL interface was written by Cory Spencer <cspencer[at]sprocket.org>.
Now maintained by Alexandr Ciornii <alexchorny[at]gmail.com>.
MegaHAL was originally written by and is copyright Jason Hutchens <hutch[at]ciips.ee.uwa.edu.au>