I think the best way to ask this question is to provide as many details about my own progress and difficultly's to this point.
The question: How to code the anna bot to connect to an IRC server?
The details:
Anna bot on the "Chatterbot Collection"
https://www.chatterbotcollection.com/item_display.php?id=551I am not sure but I think I need to add a listener to the startup.xml file. I have been unable to find any example of a working startup file for this but here is an example of my best guess that did not work.
<?xml version="1.0"?>
<!--This is an example startup.xml file for Program D.-->
<!--programd-startup is the root element and is required.-->
<programd-startup>
<bots>
<bot id="Anna" enabled="true">
<!--Bot predicates are set using the property tag. These are just examples.
Be sure to set properties BEFORE loading AIML files.-->
<properties>
<property name="name" value="anna"/>
<!-- <property name="maxclients" value="3"/> -->
</properties>
<!--Listener types must correspond to the appropriate
identifiers for listeners that are available in your classpath.-->
<listeners>
<AliceIRC="host" value="irc.sample.com"/>
<AliceIRC="port" value="6667"/>
<AliceIRC="nick" value="Anna"/>
<AliceIRC="channel" value="#sample"/>
</listeners>
<!--You can include such things as predicates, substitutions, and
sentence-splitters directly here, but it is likely that multiple
bots will use the same ones, so it's more convenient to use the
href attribute on such elements, as shown.-->
<predicates href="predicates.xml"/>
<substitutions href="substitutions.xml"/>
<sentence-splitters href="sentence-splitters.xml"/>
<!--You may enumerate each file you want the bot to load, or use
simple glob-like expressions with "*".
The path is relative to the location of this file.-->
<learn>../brains/anna/*.aiml</learn>
</bot>
</bots>
</programd-startup>
Here is some additional information contained in the one readme.txt I have been able to find so far.
2. Configuration
There's a lot to configure with Program D. What's needed for you really
depends on how you want to use the program. If you don't care about
running a web server, you don't need to bother with the "*HTTP Server*
<#config-http-server>" section. If you don't care about using Program D
with chat interfaces like AOL Instant Messenger or IRC, you won't be
interested in the information about "*Chat Listeners*
<#config-listeners>". If you don't care about high-volume applications,
or don't really want to do database-based log analysis, you can skip the
"*Database* <#config-database>" section.
And this information seams to be to cryptic for me to try and follow as well.
2.2. Chat Listeners
In current Program D nomenclature, a "listener" is a program that knows
how to speak a particular protocol and interpret messages for the bot.
For instance, the AliceIRCListener understands the popular IRC protocol
and allows you to connect your bot to any IRC server.
You can enable one or more listeners for each bot. Each listener has its
own unique configuration parameters, which are specific to the
requirements of the protocol for which it's designed. You'll find
examples of each currently-available listener in the
PROGRAMD/conf/startup.xml file.
Listeners for a given bot are specified within the <listeners> element,
in individual <listener> elements. Each <listener> element must have two
attributes: "type", and "enabled". The value for "type" must correspond
with a value assigned by the developer to a listener that is somewhere
in the Java classpath for Program D. The example startup.xml includes an
example of each type currently known. The value of "enabled" must be
"true" or "false", allowing the listener to be switched on or off with
ease.
The parameters for a listener are specifed in individual <parameter>
elements within the <listener>. For example:
<parameter name="host" value="ar.chatjunkies.org"/>
<parameter name="port" value="6667"/>
<parameter name="nick" value="programd"/>
<parameter name="channel" value="#bots"/>
These are the parameters set for the example use of the
AliceIRCListener, whose type string is "AliceIRC".
When you enable a chat listener, you will see its output mixed in with
the console output. You can also interact with some listeners if they
implement the "commandable" interface (see below <#commandables>).
So far I can make Anna run in the terminal window, but when I try to modify the listener section and add the server information I get this error and I don't understand it.
Could not find a processor for "AliceIRC="host""!
Thanks for any leads to figuring out this riddle.
myke