AIML - Etiqueta <think>
<think> La etiqueta se usa en AIML para almacenar una variable sin notificar al usuario.
Sintaxis
Almacene un valor usando la etiqueta <think>
<think>
<set name = "variable-name"> variable-value </set>
</think>
Por ejemplo, considere la siguiente conversación.
Human: My name is Mahesh
Robot: Hello!
Human: Byeee
Robot: Hi Mahesh Thanks for the conversation!
Ejemplo
Crea think.aiml dentro C > ab > bots > test > aiml y think.aiml.csv dentro C > ab > bots > test > aimlif directorios.
think.aiml
<?xml version = "1.0" encoding = "UTF-8"?>
<aiml version = "1.0.1" encoding = "UTF-8"?>
<category>
<pattern>My name is *</pattern>
<template>
Hello!<think><set name = "username"> <star/></set></think>
</template>
</category>
<category>
<pattern>Byeee</pattern>
<template>
Hi <get name = "username"/> Thanks for the conversation!
</template>
</category>
</aiml>
think.aiml.csv
0,My name is *,*,*, Hello! <think><set name = "username"> <star/></set></think>,think.aiml
0,Byeee,*,*, Hi <get name = "username"/> Thanks for the conversation!,think.aiml
Ejecutar el programa
Abra el símbolo del sistema. IrC > ab > y escriba el siguiente comando:
java -cp lib/Ab.jar Main bot = test action = chat trace = false
Verificar el resultado
Verá la siguiente salida:
Human: My name is Mahesh
Robot: Hello!
Human: Byeee
Robot: Hi Mahesh Thanks for the conversation!