AIML- <set>、<get>タグ
<set> そして <get>タグは、AIMLの変数を操作するために使用されます。変数は、事前定義された変数またはプログラマーが作成した変数にすることができます。
構文
<set>タグは、変数に値を設定するために使用されます。
<set name = "variable-name"> variable-value </set>
<get>タグは、変数から値を取得するために使用されます。
<get name = "variable-name"></get>
たとえば、次の会話について考えてみます。
Human: I am Mahesh
Robot: Hello Mahesh!
Human: Good Night
Robot: Good Night Mahesh! Thanks for the conversation!
例
内部にsetget.aimlを作成します C > ab > bots > test > aiml およびsetget.aiml.csvを内部に C > ab > bots > test > aimlif ディレクトリ。
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
プログラムを実行する
コマンドプロンプトを開きます。に移動C > ab > 次のコマンドを入力します-
java -cp lib/Ab.jar Main bot = test action = chat trace = false
結果を確認する
次の出力が表示されます-
Human: I am Mahesh
Robot: Hello Mahesh!
Human: Good Night
Robot: Good Night Mahesh! Thanks for the conversation!