예제 #1
0
 public Annotation(string utterance, DateTime timestamp, string intent, Dictionary <string, SlotValue> slots)
 {
     Inputs = new AnnotationInputs
     {
         Utterance          = utterance,
         ReferenceTimestamp = timestamp
     };
     Expected = new[] { new AnnotationExpected
                        {
                            Intent = new AnnotationIntent(intent, slots)
                        } };
 }
예제 #2
0
 public Annotation()
 {
     Inputs = new AnnotationInputs();
 }