Fix incorrect slot name on SpeechSpanData (#386)
Slot had inconsistent name. `"first_byte_at"` -> `"first_content_at"`
This commit is contained in:
parent
e827dfe75f
commit
db3975f06c
1 changed files with 1 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ class TranscriptionSpanData(SpanData):
|
|||
|
||||
|
||||
class SpeechSpanData(SpanData):
|
||||
__slots__ = ("input", "output", "model", "model_config", "first_byte_at")
|
||||
__slots__ = ("input", "output", "model", "model_config", "first_content_at")
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
|
|||
Loading…
Reference in a new issue