AIML - Primeiro Aplicativo
Vamos começar a criar o primeiro bot que simplesmente cumprimentará um usuário com Hello User! quando um usuário digita Hello Alice.
Crie a estrutura do projeto
Como na configuração do ambiente AIML , extraímos o conteúdo do program-ab emC > ab com a seguinte estrutura de diretório.
S.No. | Diretório e descrição |
---|---|
1 | c:/ab/bots Armazena bots AIML |
2 | c:/ab/lib Armazena bibliotecas Java |
3 | c:/ab/out Diretório de arquivo de classe Java |
4 | c:/ab/run.bat arquivo em lote para execução do Programa AB |
Agora, crie um teste de diretório dentro C > ab > bots e crie os seguintes diretórios nele.
S.No. | Diretório e descrição |
---|---|
1 | c:/ab/bots/test/aiml Armazena arquivos AIML |
2 | c:/ab/bots/test/aimlif Armazena arquivos AIMLIF |
3 | c:/ab/bots/test/config Armazena arquivos de configuração |
4 | c:/ab/bots/test/sets Armazena conjuntos AIML |
5 | c:/ab/bots/test/maps Armazena mapas AIML |
Criar arquivos de origem
Crie test.aiml dentro C > ab > bots > test > aiml e test.aiml.csv dentro C > ab > bots > test > aimlif diretórios.
test.aiml
<?xml version = "1.0" encoding = "UTF-8"?>
<aiml version="1.0.1" encoding = "UTF-8"?>
<category>
<pattern> HELLO ALICE </pattern>
<template>
Hello User
</template>
</category>
</aiml>
test.aiml.csv
0,HELLO ALICE,*,*,Hello User,test.aiml
Execute o programa
Abra o prompt de comando. Vamos paraC > ab > e digite o seguinte comando -
java -cp lib/Ab.jar Main bot = test action = chat trace = false
Verifique o resultado
Você verá a seguinte saída -
Working Directory = C:\ab
Program AB 0.0.4.2 beta -- AI Foundation Reference AIML 2.0 implementation
bot = test
action = chat
trace = false
trace mode = false
Name = test Path = C:\ab/bots/test
C:\ab
C:\ab/bots
C:\ab/bots/test
C:\ab/bots/test/aiml
C:\ab/bots/test/aimlif
C:\ab/bots/test/config
C:\ab/bots/test/logs
C:\ab/bots/test/sets
C:\ab/bots/test/maps
Preprocessor: 0 norms 0 persons 0 person2
Get Properties: C:\ab/bots/test/config/properties.txt
addAIMLSets: C:\ab/bots/test/sets does not exist.
addCategories: C:\ab/bots/test/aiml does not exist.
AIML modified Tue Apr 07 22:24:29 IST 2015 AIMLIF modified Tue Apr 07 22:26:53 I
ST 2015
No deleted.aiml.csv file found
No deleted.aiml.csv file found
Loading AIML files from C:\ab/bots/test/aimlif
Reading Learnf file
Loaded 1 categories in 0.009 sec
--> Bot test 1 completed 0 deleted 0 unfinished
(1[6])--HELLO-->(1[5])--ALICE-->(1[4])--<THAT>-->(1[3])--*-->(1[2])--<TOPIC>-->(
1[1])--*-->(0[null,null]) Hello User...
7 nodes 6 singletons 1 leaves 0 shortcuts 0 n-ary 6 branches 0.85714287 average
branching
Human:
Tipo Hello Alice e veja o resultado e digite qualquer outra coisa para ver o resultado alterado.
Human: hello alice
Robot: Hello User
Human: bye
Robot: I have no answer for that.
Human: