-
Notifications
You must be signed in to change notification settings - Fork 0
/
wildcards.aiml
45 lines (33 loc) · 993 Bytes
/
wildcards.aiml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="2.0">
<!--Name -->
<category>
<pattern>MY NAME IS *</pattern>
<template>Hello, <star/>.</template>
</category>
<category>
<pattern>I AM *</pattern>
<template>Hello <star/>.</template>
</category>
<category>
<pattern>MY NAME IS *</pattern>
<template>Nice to meet you, <set name="name"><star/></set></template>
</category>
<category>
<pattern>WHAT IS MY NAME</pattern>
<template>Your name is <get name="name"/>.</template>
</category>
<!--Suicide -->
<category>
<pattern>^ SUICIDE ^</pattern>
<template><srai>I WANT TO KILL MYSELF</srai></template>
</category>
<category>
<pattern>^ SUICIDAL ^</pattern>
<template><srai>I WANT TO KILL MYSELF</srai></template>
</category>
<category>
<pattern>* SUICIDE *</pattern>
<template><srai>I WANT TO KILL MYSELF</srai></template>
</category>
</aiml>