Added voice control
Former-commit-id: f03cb75d99a1f2719387a782331c2d0b3f4a6256
This commit is contained in:
parent
12f2c3eeee
commit
35c92407a3
96 changed files with 74167 additions and 10 deletions
45
resource/bots/super/aiml/date.aiml
Normal file
45
resource/bots/super/aiml/date.aiml
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<aiml>
|
||||
<!-- File: date.aiml -->
|
||||
<!-- Author: Dr. Richard S. Wallace -->
|
||||
<!-- Last modified: February 20, 2013 -->
|
||||
<!-- -->
|
||||
<!-- This AIML file is part of the SUPER 0.0.4 chat bot knowledge base. -->
|
||||
<!-- -->
|
||||
<!-- The SUPER brain is Copyright © 2013 by ALICE AI Foundation. -->
|
||||
<!-- -->
|
||||
<!-- The SUPER brain is released under the terms of the GNU Lesser General -->
|
||||
<!-- Public License, as published by the Free Software Foundation. -->
|
||||
<!-- -->
|
||||
<!-- This file is distributed WITHOUT ANY WARRANTY; without even the -->
|
||||
<!-- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -->
|
||||
<!-- -->
|
||||
<!-- For more information see http://www.alicebot.org -->
|
||||
<category><pattern>DAY</pattern>
|
||||
<template>Today is <date format="%A" jformat="EEEEEEEEEE"/></template>
|
||||
</category>
|
||||
<category><pattern>YEAR</pattern>
|
||||
<template>This is <date format="%Y" jformat="YYYY"/></template>
|
||||
</category>
|
||||
<category><pattern>MONTH</pattern>
|
||||
<template>This is <date format="%B" jformat="MMMMMMMMM"/></template>
|
||||
</category>
|
||||
<category><pattern>TIME</pattern>
|
||||
<template>The time is <date format="%I:%M %p" jformat="h:mm a"/></template>
|
||||
</category>
|
||||
<category><pattern>DATE</pattern>
|
||||
<template>Today is <date format="%B %d, %Y" jformat="MMMMMMMMM dd, YYYY"/></template>
|
||||
</category>
|
||||
<category><pattern>DATE AND TIME</pattern>
|
||||
<template>The date and time is <date/></template>
|
||||
</category>
|
||||
<category><pattern>HOW MANY DAYS UNTIL CHRISTMAS</pattern>
|
||||
<template><interval>
|
||||
<jformat>MMMMMMMMM dd</jformat>
|
||||
<style>days</style>
|
||||
<from><date jformat="MMMMMMMMM dd"/></from>
|
||||
<to>December 25</to>
|
||||
</interval>
|
||||
days until Christmas.</template>
|
||||
</category>
|
||||
</aiml>
|
||||
Loading…
Add table
Add a link
Reference in a new issue