dialoguekit.core.slot_value_annotation ====================================== .. py:module:: dialoguekit.core.slot_value_annotation .. autoapi-nested-parse:: Interface representing slot-value annotations. Classes ------- .. autoapisummary:: dialoguekit.core.slot_value_annotation.SlotValueAnnotation Module Contents --------------- .. py:class:: SlotValueAnnotation(slot: str, value: Optional[str] = None, start: Optional[int] = None, end: Optional[int] = None) Bases: :py:obj:`dialoguekit.core.annotation.Annotation` Instantiates a slot-value annotation. :param slot: Slot name. :param value: Slot value. Defaults to None. :param start: Start index of the slot value in the utterance. Defaults to None. :param end: End index of the slot value in the utterance. Defaults to None. .. py:attribute:: slot :type: str .. py:attribute:: start :type: int .. py:attribute:: end :type: int