AIML - <set>, <get> Tag
<set> e <get>i tag vengono utilizzati per lavorare con le variabili in AIML. Le variabili possono essere variabili predefinite o variabili create dal programmatore.
Sintassi
Il tag <set> viene utilizzato per impostare il valore in una variabile.
<set name = "variable-name"> variable-value </set>
Il tag <get> viene utilizzato per ottenere valore da una variabile.
<get name = "variable-name"></get>
Ad esempio, considera la seguente conversazione.
Human: I am Mahesh
Robot: Hello Mahesh!
Human: Good Night
Robot: Good Night Mahesh! Thanks for the conversation!
Esempio
Crea setget.aiml all'interno C > ab > bots > test > aiml e setget.aiml.csv all'interno C > ab > bots > test > aimlif directory.
setget.aiml
<?xml version = "1.0" encoding = "UTF-8"?>
<aiml version = "1.0.1" encoding = "UTF-8"?>
<category>
<pattern>I am *</pattern>
<template>
Hello <set name = "username"> <star/>! </set>
</template>
</category>
<category>
<pattern>Good Night</pattern>
<template>
Hi <get name = "username"/> Thanks for the conversation!
</template>
</category>
</aiml>
setget.aiml.csv
0,I am *,*,*, Hello <set name = "username"> <star/>! </set>,setget.aiml
0,Good Night,*,*, Hi <get name = "username"/> Thanks for the conversation!,setget.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: I am Mahesh
Robot: Hello Mahesh!
Human: Good Night
Robot: Good Night Mahesh! Thanks for the conversation!