Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit db3975f

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

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/agents/tracing/span_data.py

Copy file name to clipboardExpand all lines: src/agents/tracing/span_data.py
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.