-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgoogle.aiml
113 lines (90 loc) · 3.49 KB
/
google.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<aiml version="1.0.1" encoding="UTF-8">
<category>
<pattern>HELLO</pattern>
<template>HI USER!</template>
</category>
<category>
<pattern>CAN YOU SHOW ME PICTURES OF *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 2</system></template>
</category>
<category>
<pattern>CAN YOU SEARCH FOR * ON GOOGLE</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 1</system></template>
</category>
<category>
<pattern>SEARCH FOR * ON GOOGLE</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 1</system></template>
</category>
<category>
<pattern>SEARCH FOR *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 1</system></template>
</category>
<category>
<pattern>CAN YOU SEARCH FOR *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 1</system></template>
</category>
<category>
<pattern>GOOGLE *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 1</system></template>
</category>
<category>
<pattern>PICTURES OF *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 2</system></template>
</category>
<category>
<pattern>SHOW ME PICTURES OF *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 2</system></template>
</category>
<category>
<pattern>GOOGLE PICTURES OF *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 2</system></template>
</category>
<category>
<pattern>GOOGLE PHOTOS OF *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 2</system></template>
</category>
<category>
<pattern>IMAGES OF *</pattern>
<template>Sure.Here you go.<system>python AIML/googl.py <star /> 2</system></template>
</category>
<category>
<pattern>WHAT IS THE TEMPERATURE IN *</pattern>
<template>Let me see the temperature in <star />. The temperature is <system>python AIML/weather.py <star /> 1</system></template>
</category>
<category>
<pattern>WHAT IS THE HUMIDITY IN *</pattern>
<template>Let me see the humidity in <star />. The humidity is <system>python AIML/weather.py <star /> 2</system></template>
</category>
<category>
<pattern>GIVE ME THE TEMPERATURE IN *</pattern>
<template><srai>WHAT IS THE TEMPERATURE IN <star /></srai></template>
</category>
<category>
<pattern>GIVE ME THE HUMIDITY IN *</pattern>
<template><srai>WHAT IS THE HUMIDITY IN <star /></srai></template>
</category>
<category>
<pattern>WHATS THE TEMPERATURE IN *</pattern>
<template><srai>WHAT IS THE TEMPERATURE IN <star /></srai></template>
</category>
<category>
<pattern>WHATS THE HUMIDITY IN *</pattern>
<template><srai>WHAT IS THE HUMIDITY IN <star /></srai></template>
</category>
<category>
<pattern>WHAT IS THE WEATHER IN *</pattern>
<template>THe weather in <star /> is <system>python AIML/weather.py <star /> 3</system></template>
</category>
<category>
<pattern>GIVE ME THE WEATHER IN *</pattern>
<template><srai>WHAT IS THE WEATHER IN <star />.</srai></template>
</category>
<category>
<pattern>WHATS THE WEATHER IN *</pattern>
<template><srai>WHAT IS THE WEATHER IN <star /></srai></template>
</category>
<category>
<pattern>WHATS THE WEATHER AT *</pattern>
<template><srai>WHAT IS THE WEATHER IN <star /></srai></template>
</category>
</aiml>