Fix incorrect slot name on SpeechSpanData (#386)

Slot had inconsistent name. 

`"first_byte_at"` -> `"first_content_at"`
This commit is contained in:
Travis Dent 2025-04-01 08:51:58 -07:00 committed by GitHub
parent e827dfe75f
commit db3975f06c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,