AIML - Thẻ <topic>
<topic>Thẻ được sử dụng trong AIML để lưu trữ ngữ cảnh để cuộc trò chuyện sau này có thể được thực hiện dựa trên ngữ cảnh đó. Thông thường,<topic> thẻ được sử dụng trong Yes/No type conversation. Nó giúp AIML tìm kiếm các danh mục được viết trong ngữ cảnh của chủ đề.
Cú pháp
Xác định chủ đề bằng thẻ <set>
<template>
<set name = "topic"> topic-name </set>
</template>
Xác định danh mục bằng thẻ <topic>
<topic name = "topic-name">
<category>
...
</category>
</topic>
Ví dụ, hãy xem xét cuộc trò chuyện sau đây.
Human: let discuss movies
Robot: Yes movies
Human: Comedy movies are nice to watch
Robot: Watching good movie refreshes our minds.
Human: I like watching comedy
Robot: I too like watching comedy.
Ở đây bot phản hồi lấy "phim" làm chủ đề.
Thí dụ
Tạo topic.aiml bên trong C > ab > bots > test > aiml và topic.aiml.csv bên trong C > ab > bots > test > aimlif các thư mục.
topic.aiml
<?xml version = "1.0" encoding = "UTF-8"?>
<aiml version = "1.0.1" encoding = "UTF-8"?>
<category>
<pattern>LET DISCUSS MOVIES</pattern>
<template>Yes <set name = "topic">movies</set></template>
</category>
<topic name = "movies">
<category>
<pattern> * </pattern>
<template>Watching good movie refreshes our minds.</template>
</category>
<category>
<pattern> I LIKE WATCHING COMEDY! </pattern>
<template>I like comedy movies too.</template>
</category>
</topic>
</aiml>
that.aiml.csv
0,LET DISCUSS MOVIES,*,*,Yes <set name = "topic">movies</set>,topic.aiml
0,*,*,movies,Watching good movie refreshes our minds.,topic.aiml
0,I LIKE WATCHING COMEDY!,*,movies,I like comedy movies too.,topic.aiml
Thực hiện chương trình
Mở dấu nhắc lệnh. Đi đếnC > ab > và gõ lệnh sau:
java -cp lib/Ab.jar Main bot = test action = chat trace = false
Xác minh kết quả
Bạn sẽ thấy kết quả sau:
Human: let discuss movies
Robot: Yes movies
Human: Comedy movies are nice to watch
Robot: Watching good movie refreshes our minds.
Human: I like watching comedy
Robot: I too like watching comedy.