WD-voice-nlu-reqs-19991223
22.9 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content=
"text/html; charset=iso-8859-1">
<title>Natural Language Processing Requirements for Voice Markup
Languages</title>
<style type="text/css">
body {
font-family: sans-serif;
margin-left: 10%;
margin-right: 5%;
color: black;
background-color: white;
background-attachment: fixed;
background-image: url(http://www.w3.org/StyleSheets/TR/WD.gif);
background-position: top left;
background-repeat: no-repeat;
font-family: Tahoma, Verdana, "Myriad Web", Syntax, sans-serif;
}
.unfinished { font-style: normal; background-color: #FFFF33}
.dtd-code { font-family: monospace;
background-color: #dfdfdf; white-space: pre;
border: #000000; border-style: solid;
border-top-width: 1px; border-right-width: 1px;
border-bottom-width: 1px; border-left-width: 1px; }
p.copyright {font-size: smaller}
h2,h3 {margin-top: 1em;}
.extra { font-style: italic; color: #338033 }
code {
color: green;
font-family: monospace;
font-weight: bold;
}
.example {
border: solid green;
border-width: 2px;
color: green;
font-weight: bold;
margin-right: 5%;
margin-left: 0;
}
.bad {
border: solid red;
border-width: 2px;
margin-left: 0;
margin-right: 5%;
color: rgb(192, 101, 101);
}
div.navbar { text-align: center; }
div.contents {
background-color: rgb(204,204,255);
padding: 0.5em;
border: none;
margin-right: 5%;
}
table {
margin-left: -4%;
margin-right: 4%;
font-family: sans-serif;
background: white;
border-width: 2px;
border-color: white;
}
th { font-family: sans-serif; background: rgb(204, 204, 153) }
td { font-family: sans-serif; background: rgb(255, 255, 153) }
.tocline { list-style: none; }
</style>
<link rel="stylesheet" type="text/css" href=
"http://www.w3.org/StyleSheets/TR/W3C-WD.css">
</head>
<body>
<div class="head">
<p><a href="http://www.w3.org/"><img class="head" src=
"http://www.w3.org/Icons/WWW/w3c_home.gif" alt="W3C"></a></p>
<h1 class="head">Natural Language Processing Requirements<br>
for Voice Markup Languages</h1>
<h3 class="notoc">W3C Working Draft <i>23 December 1999</i></h3>
<dl>
<dt>This version:</dt>
<dd><a href="http://www.w3.org/TR/1999/WD-voice-nlu-reqs-19991223">
http://www.w3.org/TR/1999/WD-voice-nlu-reqs-19991223</a></dd>
<dt>Latest version:</dt>
<dd><a href=
"http://www.w3.org/TR/voice-nlu-reqs">
http://www.w3.org/TR/voice-nlu-reqs</a></dd>
<dt>Editor:</dt>
<dd>Deborah Dahl</dd>
</dl>
<p class="copyright"><a href=
"http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">
Copyright</a> © 1999 <a href="http://www.w3.org/">
W3C</a><sup>®</sup> (<a href=
"http://www.lcs.mit.edu/">MIT</a>, <a href=
"http://www.inria.fr/">INRIA</a>, <a href=
"http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. <abbr
title="World Wide Web Consortium">W3C</abbr> <a href=
"http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">
liability</a>, <a href=
"http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">
trademark</a>, <a href=
"http://www.w3.org/Consortium/Legal/copyright-documents">document
use</a> and <a href=
"http://www.w3.org/Consortium/Legal/copyright-software">software
licensing</a> rules apply.</p>
<hr>
</div>
<h2 class="notoc">Abstract</h2>
<p>The W3C Voice Browser working group aims to develop
specifications to enable access to the Web using spoken
interaction. This document is part of a set of requirements
studies for voice browsers, and provides details of the
requirements for natural language processing.</p>
<h2>Status of this document</h2>
<p>This document describes the requirements for natural language
processing for voice browsers, as a precursor to starting work on
specifications. Related requirement drafts are linked from the <a
href="/TR/1999/WD-voice-intro-19991223">introduction</a>. The
requirements are being released as working drafts but are not
intended to become proposed recommendations.</p>
<p>This specification is a Working Draft of the Voice Browser working
group for review by W3C members and other interested parties. This is
the first public version of this document. It is a draft document and
may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use W3C Working Drafts as reference
material or to cite them as other than "work in progress".</p>
<p>Publication as a Working Draft does not imply endorsement by
the W3C membership, nor of members of the Voice Browser working
groups. This is still a draft document and may be updated,
replaced or obsoleted by other documents at any time. It is
inappropriate to cite W3C Working Drafts as other than "work in
progress."</p>
<p>This document has been produced as part of the <a href=
"http://www.w3.org/Voice/">W3C Voice Browser Activity</a>,
following the procedures set out for the <a href=
"http://www.w3.org/Consortium/Process/">W3C Process</a>. The
authors of this document are members of the <a href=
"http://www.w3.org/Voice/Group">Voice Browser Working Group</a>.
This document is for public review. Comments should be sent to
the public mailing list <<a href=
"mailto:www-voice@w3.org">www-voice@w3.org</a>> (<a href=
"http://www.w3.org/Archives/Public/www-voice/">archive</a>) by
14th January 2000.</p>
<p>A list of current W3C Recommendations and other technical
documents can be found at <a href="http://www.w3.org/TR">
http://www.w3.org/TR</a>.</p>
<h1>Introduction</h1>
<p>The main goal of this subgroup is to establish a prioritized
list of requirements for   natural language processing in a
voice browser environment.</p>
<p>The process will consist of the following steps:</p>
<ol type="1">
<li>Collect requirements on natural language processing.</li>
<li>Prioritize these requirements.</li>
<li>Distribute requirements to, and take feedback from, relevant
groups working on natural language in spoken dialog systems.</li>
<li>Define specifications for natural language processing
components, based on the feedback received.</li>
</ol>
<h2>0.1 Scope</h2>
<p>This document specifies requirements that define the
capabilities of any component of a voice browser system which
performs natural language interpretation, that is, the task of
determining and representing the content of a natural language
input from a user. Interpretation components include both
stand-alone natural language understanding (NLU) components which
receive text string results from a speech recognizer or keyboard
as well as speech recognizers that incorporate natural language
understanding functionality by returning  interpretations
rather than, or in addition to, text strings.</p>
<h2>0.2 Interaction with Other Groups</h2>
<p>The activities of the Natural Language  Requirements
Subgroup will be coordinated with the activities of the Grammar
Representation Subgroup, the Synthesis Markup Subgroup, and the
Dialog Subgroup.</p>
<h1>  General Requirements</h1>
<p>The NLU system should be able to:</p>
<ol type="1">
<li>Return a message stating that it cannot interpret an input at
all. (must specify)</li>
<li>Return multiple pieces of information from multi-functional
utterances (must specify)</li>
<li>Return partial information if it is unable to completely
process an input. (must specify)</li>
<li>If partial information is returned, indicate how much of the
input was left unanalyzed. (nice to specify)</li>
<li>Be extensible in the sense that it should be possible to add
new types of utterances to the NLU specification. Specifically,
the system should be able to incorporate modular subdialogs.
(must specify)</li>
<li>Return a score reflecting its confidence in the overall
interpretation. The exact format of confidence scores remains to
be determined. It could be a rough scale or it could be
probabilities, for example. (should specify)</li>
<li>Return a score for each attribute, reflecting its confidence
in the interpretation of that attribute. (should specify)</li>
<li>Return multiple analyses (n-best) (nice to specify)</li>
</ol>
<h1>Input Requirements</h1>
<p>A standalone (i.e., not integrated with a speech recognizer)
NLU system should be able to:</p>
<ol type="1">
<li>Accept N-best ASR output with or without acoustic scores for
either the whole utterance, each word in an utterance or both.
(must specify)</li>
<li>Accept ASR output with out of vocabulary markers.(should
specify)</li>
<li>Accept an ASCII text representation of an utterance (should
specify)</li>
<li>Accept a word lattice as input.(must specify)</li>
<li>Accept prosodic notations on the ASR output. (nice to
specify)</li>
</ol>
<p>Any NLU system should be able to:</p>
<ol type="1">
<li>Dynamically switch to a different task model (must
specify)</li>
<li>Dynamically modify the task model; e.g. add or remove
possible choices from a slot (must specify)</li>
<li>Accept sequential multi-modal input (must specify)</li>
<li>Accept uncoordinated simultaneous multi-modal input (should
specify)</li>
<li>Accept coordinated simultaneous multi-modal input. For
example, the  NLU system should be able to represent or
interpret a representation of  the context  so that
anaphoric expressions in the user's utterances which refer to
items in the context can be interpreted. The context can include
the speech context, including the system's utterances, as well as
the external context (e.g. <em>I'll take one of these</em>
(click)). (nice to specify)</li>
<li>Return ASR timing information to the dialog controller (nice
to specify).</li>
<li>Accept multi-modal time-stamped information (should
specify)</li>
</ol>
<h1>Task-specific information</h1>
<p>These requirements are intended to insure that the natural
language component is capable of representing results of
processing task-specific utterances.</p>
<p>An NLU system should be able to:</p>
<p>Represent task information:</p>
<ol type="1">
<li>Represent values for slots in a task model: <em>I want five
lines.</em> (must specify)</li>
<li>Support hierarchical attributes in task model:  e.g. a
slot can itself be a frame. (must specify)</li>
<li>Represent interpretations of sentences with anaphora and
ellipsis. <em>I want two hamburgers, one with ketchup and one
without.</em> (must specify)</li>
<li>Represent deictic utterances, which require reference to the
non-linguistic context for their interpretation.<em> I want this.
(</em>must specify<em>).</em></li>
</ol>
<p>Represent meta-task information (all nice to specify)</p>
<ol type="1">
<li>Represent a request for a definition: <em>What does 'access
code' mean?</em></li>
<li>Represent a request for the status of a filled slot: <em>How
many lines did I ask for?</em></li>
<li>Represent information about a slot: <em>How many lines am I
allowed to ask for?</em></li>
<li>Represent a request for the possible fillers of a slot: <em>
What are my choices? Can I schedule a call on Sunday?</em></li>
<li>Represent a request for the status of all slots. <em>What
have I ordered so far?</em></li>
<li>Represent questions about possible, desirable, necessary and
conditional situations. <em>Can you pay my electric bill? Should
I order the chicken? Do I have to get a drink with the special?
If I stay over Saturday night will I get a lower fare?</em></li>
<li>Represent requests for explanation of a system response. <em>
Why?</em></li>
<li>Represent request for the amount of task remaining.<em> What
else do you need to know? Am I almost finished?</em></li>
</ol>
<h1>Generic Information about the Communication Process</h1>
<p>An NLU system should be able to represent meta-dialog
information having to do with the communication process.(all nice
to specify except as noted)</p>
<ol type="1">
<li>Represent utterances about the dialog: <em>I want to revisit
my previous answer. That's what I just said.</em></li>
<li>Represent a request for help.(must specify)</li>
<li>Represent a request to have the last prompt repeated</li>
<li>Represent requests to make the output louder, quieter,
faster, slower, change languages.</li>
<li>Represent requests to pause the dialog.</li>
<li>Represent utterances indicating that the user:
<ul>
<li>Didn't hear the prompt (must have)</li>
<li>Didn't understand the prompt (must have)</li>
<li>Refuses to supply the answer to a prompt.</li>
<li>Doesn't know the answer to the prompt</li>
</ul>
</li>
</ol>
<h1>Dialog Control</h1>
<p>The NLU system should be able to represent: (all must specify
except as noted)</p>
<ol type="1">
<li>A confirmation</li>
<li>A request to change the value of a slot due to a speech
recognition error, a user error, or the user changing his/her
mind. <em>I meant p.m.</em></li>
<li>A request to empty a slot that's already been filled. <em>
(forget X)</em></li>
<li>A request to stop or end the dialog</li>
<li>A request to start over.</li>
<li>A request to transfer to an operator.</li>
<li>A request to suspend and resume a dialog</li>
<li>An explicit request to switch to another task.</li>
<li>An implicit request to switch to another task. (nice to
specify).</li>
</ol>
<h1>Appendix: Sample Dialog with examples of a possible approach
to NLU representation.</h1>
<p>This is an example of a banking application with the user's
utterances annotated with an example of a possible NLU
representation, based on the following task model.</p>
<h3>Task Model/Frame:</h3>
<pre>
Identification:
Name:
Address:
Street:
City:
Zip Code:
Phone:
Action:
Transfer:
Source_account:
Destination_account:
Amount:
Value:
Currency:
Balance:
Account:
</pre>
<p class="c2"> </p>
<table border="1" cellpadding="10" cellspacing="0" summary="3
columns, first with the dialog, second shows comments, the third
shows the output of the natural language processing">
<tbody>
<tr>
<td>
<p><strong>Dialog</strong></p>
</td>
<td>
<p><strong>Dialog Comments</strong></p>
</td>
<td>
<p><strong>NLU output</strong></p>
</td>
</tr>
<tr>
<td>
<p>1. System: "Welcome to Ajax Bank. Please tell me your name</p>
</td>
<td>
<p> </p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>2. User: I'm Jack Jones</p>
</td>
<td> </td>
<td>
<p><strong>Name: Jack Jones</strong></p>
</td>
</tr>
<tr>
<td>
<p>3. System: I know three people with the name Jack Jones, will
you tell my your address, please?</p>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>
<p>4. User: I live at 18773 Union Street in Carlton</p>
</td>
<td> </td>
<td>
<p>Address:</p>
<p>Street: 18773 Union St</p>
<p>City: Carlton</p>
</td>
</tr>
<tr>
<td>
<p>5. System: Then your phone number is 773-8427?</p>
</td>
<td> </td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>6. User: Yep, that's me.</p>
</td>
<td> </td>
<td>
<p><strong>Yes</strong></p>
</td>
</tr>
<tr>
<td>
<p>7. System: What would you like me to do?</p>
</td>
<td>
<p> </p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>8. User: Transfer $200 from my savings account to my checking
account.</p>
</td>
<td> </td>
<td>
<p><strong>Action: transfer</strong></p>
<p><strong>Source_account: savings</strong></p>
<p><strong>Destination_account: checking</strong></p>
<p><strong>Amount:</strong></p>
<p><strong>Value: 200</strong></p>
<p><strong>Currency: USD</strong></p>
</td>
</tr>
<tr>
<td>
<p>9. System: You have two savings accounts, your individual
savings account and a joint savings account with June Jones. From
which savings account should I transfer the $200 from?</p>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>
<p>10. User: From my individual account, not the joint
account</p>
</td>
<td>
<p>User clarifies by answering the question twice (once
identifying the correct account, and again by identifying the
incorrect account)</p>
</td>
<td>
<p><strong>Correction:</strong></p>
<p><strong>Source_account: individual</strong></p>
</td>
</tr>
<tr>
<td>
<p>11. System: I'm sorry, I can't do that. You have only $150 in
your savings account.</p>
</td>
<td>
<p>System enforces a business rule that says a user can't
transfer more money that what's in his/her account.</p>
</td>
<td> </td>
</tr>
<tr>
<td>
<p>12. User: OK, just transfer the $150.</p>
</td>
<td>
<p>User modifies the request by editing the amount to be
transferred.</p>
</td>
<td>
<p><strong>Correction:</strong></p>
<p><strong>Amount: Value: 150</strong></p>
<p><strong>Currency: USD</strong></p>
</td>
</tr>
<tr>
<td>
<p>13. System: OK, I have transferred $150 from your individual
saving account to your checking account. Is there anything else I
can do for you?</p>
</td>
<td>
<p>System confirms that the transaction is completed. Invite the
user to begin another transaction</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>14. User: Yes, tell me how much money is in our joint saving
account</p>
</td>
<td>
<p>User asks a new question</p>
</td>
<td>
<p><strong>balance: joint account</strong></p>
</td>
</tr>
<tr>
<td>
<p>15. System: You have $600 in your joint savings account with
June Jones. What else can I do for you?</p>
</td>
<td>
<p>System correctly identifies the source because of the phrase
"our joint" savings account. The system prompt message changes so
that the user does not get tired of hearing the same prompt
message.</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>16. User: Yes, transfer $50 from that account.</p>
</td>
<td>
<p> </p>
</td>
<td>
<p><strong>Action: transfer</strong></p>
<p><strong>Source_account: savings</strong></p>
<p><strong>Amount:</strong></p>
<p><strong>Value: 50</strong></p>
<p><strong>Currency: USD</strong></p>
</td>
</tr>
<tr>
<td>
<p>17. System: Do you want me to transfer $50 from your joint
account with June Jones to your checking account?</p>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>
<p>18. No, to my individual savings account.</p>
</td>
<td>
<p> </p>
</td>
<td>
<p><strong>Destination­_account: individual
savings</strong></p>
</td>
</tr>
<tr>
<td>
<p>19. System: Do you want me to transfer $50 from your joint
savings account with June Jones to your individual savings
account?</p>
</td>
<td>
<p>System assumes that the source is still joint savings account
and that the amount is still $50</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>20: User: Yes</p>
</td>
<td>
<p> </p>
</td>
<td>
<p><strong>Yes</strong></p>
</td>
</tr>
<tr>
<td>
<p>21.System: I've transferred $50 from your joint savings
account with June Jones to your individual savings account.</p>
</td>
<td>
<p>System confirms transaction is completed.</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>22.System: Is there anything else I can do for you?</p>
</td>
<td>
<p>System prompts the user for a new transaction</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>23. User: Yes, can you pay my electric bill?</p>
</td>
<td>
<p>User isn't actually asking to have the bill paid, just whether
the system can do it.</p>
</td>
<td>
<p><strong>Capability_query:</strong></p>
<p><strong>Action: transfer</strong></p>
<p><strong>Destination_account: electric bill</strong></p>
</td>
</tr>
<tr>
<td>
<p>24. System: Yes, I can transfer money to General Utilities</p>
</td>
<td> </td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>25: User: OK, pay it</p>
</td>
<td> </td>
<td>
<p><strong>Action: transfer</strong></p>
<p><strong>Destination_account: electric bill</strong></p>
</td>
</tr>
<tr>
<td>
<p>26: System, How much money should I transfer to General
Utilities?</p>
</td>
<td>
<p>System solicits a value for the amount parameter from the
user</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>27: User: transfer $80 from my joint checking account</p>
</td>
<td>
<p>User responds with the value for the requested parameter, and
volunteers a parameter for another parameter, the source.</p>
</td>
<td>
<p><strong>Operation: transfer</strong></p>
<p><strong>Source_account: joint checking</strong></p>
<p><strong>Amount:</strong></p>
<p><strong>Value: 80</strong></p>
<p><strong>Currency: USD</strong></p>
</td>
</tr>
<tr>
<td>
<p>28: System: You want to transfer $80 from your joint checking
account to General Utilities?</p>
</td>
<td>
<p>System asks user to confirm entire transaction</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>29: User: Make it so</p>
</td>
<td>
<p>The user watches Captain Picard on Star Trek and copies his
command phrasing.</p>
</td>
<td>
<p><strong>Yes</strong></p>
</td>
</tr>
<tr>
<td>
<p>30: System: Do you want me to do anything else?</p>
</td>
<td>
<p>System prompts user for another transaction</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>31: User: Yes, transfer $800 from the IRS to my savings
account</p>
</td>
<td>
<p>User tries to do the impossible.</p>
</td>
<td>
<p><strong>Operation: transfer</strong></p>
<p><strong>Source_account: IRS</strong></p>
<p><strong>Destination_account: joint checking
account</strong></p>
</td>
</tr>
<tr>
<td>
<p>32: System: I am not allowed to transfer money from the IRS
account</p>
</td>
<td>
<p>system enforces business rules about source accounts.</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>33: User: What can I do to the IRS?</p>
</td>
<td>
<p>While the user may be joking, the system treats this as a help
request</p>
</td>
<td>
<p><strong>Capability_query: action</strong></p>
<p><strong>actor: user</strong></p>
<p><strong>theme: IRS</strong></p>
<p><strong>If the request is not representable within the task
model, it may be useful for the system to fall back to a less
fully analyzed representation of the utterance, rather than
simply to fail to understand it.</strong></p>
</td>
</tr>
<tr>
<td>
<p>34: System: you may pay your taxes by transferring money to
the IRS</p>
</td>
<td>
<p>System explains what operations the user can perform with the
IRS account</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>35: User: I don't want to do that.</p>
</td>
<td>
<p>User cancels a transaction in progress</p>
</td>
<td>
<p><strong>Cancel</strong></p>
</td>
</tr>
<tr>
<td>
<p>36. System: OK. What else can I do for you?</p>
</td>
<td>
<p> </p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>37: User: You're cute, can I call you?</p>
</td>
<td>
<p>User tries to make fun of the system</p>
</td>
<td>
<p><strong>did not understand</strong></p>
</td>
</tr>
<tr>
<td>
<p>38: System: I'm sorry, I didn't understand your request. Can
you please rephrase it?</p>
</td>
<td>
<p> </p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>29: No. Goodbye</p>
</td>
<td>
<p> </p>
</td>
<td>
<p><strong>Goodbye</strong></p>
</td>
</tr>
<tr>
<td>
<p>30: Thanks for using Ajax bank, Good bye.</p>
</td>
<td>
<p>User is logged off.</p>
</td>
<td>
<p> </p>
</td>
</tr>
</tbody>
</table>
<h2>Acknowledgments</h2>
<h3>Subgroup Members</h3>
<blockquote>Mike Brown, Lucent<br>
Carolina Di Cristo, Telecom Italia<br>
Deborah Dahl, Unisys<br>
Linda Dorrian, Productivity Works<br>
Robert Keiller, Canon<br>
Bill Ledingham, SpeechWorks<br>
Stephen Potter, Entropic<br>
Dave Raggett, HP and W3C<br>
Ramesh Sarukkai, Lernout and Hauspie<br>
Volker Steinbliss, Philips</blockquote>
</body>
</html>