Skip to content

Commit db3975f

Browse files
authored
Fix incorrect slot name on SpeechSpanData (#386)
Slot had inconsistent name. `"first_byte_at"` -> `"first_content_at"`
1 parent e827dfe commit db3975f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agents/tracing/span_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def export(self) -> dict[str, Any]:
236236

237237

238238
class SpeechSpanData(SpanData):
239-
__slots__ = ("input", "output", "model", "model_config", "first_byte_at")
239+
__slots__ = ("input", "output", "model", "model_config", "first_content_at")
240240

241241
def __init__(
242242
self,

0 commit comments

Comments
 (0)