AIML - Tag <pensi>
<think> Il tag viene utilizzato in AIML per memorizzare una variabile senza avvisare l'utente.
Sintassi
Memorizza un valore utilizzando il tag <think>
<think>
<set name = "variable-name"> variable-value </set>
</think>
Ad esempio, considera la seguente conversazione.
Human: My name is Mahesh
Robot: Hello!
Human: Byeee
Robot: Hi Mahesh Thanks for the conversation!
Esempio
Crea think.aiml all'interno C > ab > bots > test > aiml e think.aiml.csv all'interno C > ab > bots > test > aimlif directory.
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
Esegui il programma
Apri il prompt dei comandi. Vai aC > ab > e digita il seguente comando:
java -cp lib/Ab.jar Main bot = test action = chat trace = false
Verifica il risultato
Vedrai il seguente output:
Human: My name is Mahesh
Robot: Hello!
Human: Byeee
Robot: Hi Mahesh Thanks for the conversation!