From 10dead92db51c7f4b2cfe8c3e6b5943f6d75e40e Mon Sep 17 00:00:00 2001 From: Loic CHOLLIER Date: Wed, 3 Sep 2025 12:03:26 -0700 Subject: [PATCH 1/2] fix: allow setting an initial tracing configuration for Realtime with the current implementation, the initial tracing (workflow name and metadata) wasn't taking into account, it was rejecting configuration update even if there wasn't one set. --- packages/agents-realtime/src/openaiRealtimeBase.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/agents-realtime/src/openaiRealtimeBase.ts b/packages/agents-realtime/src/openaiRealtimeBase.ts index f37e49c3..f4c15b89 100644 --- a/packages/agents-realtime/src/openaiRealtimeBase.ts +++ b/packages/agents-realtime/src/openaiRealtimeBase.ts @@ -665,6 +665,7 @@ export abstract class OpenAIRealtimeBase } if ( + this.#tracingConfig !== null && typeof this.#tracingConfig !== 'string' && typeof tracingConfig !== 'string' ) { From b6249512a5b1241cf601dc11043830bce5b3e123 Mon Sep 17 00:00:00 2001 From: Kazuhiro Sera Date: Thu, 4 Sep 2025 06:24:23 +0900 Subject: [PATCH 2/2] Create sharp-planets-rescue.md --- .changeset/sharp-planets-rescue.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/sharp-planets-rescue.md diff --git a/.changeset/sharp-planets-rescue.md b/.changeset/sharp-planets-rescue.md new file mode 100644 index 00000000..90c92c51 --- /dev/null +++ b/.changeset/sharp-planets-rescue.md @@ -0,0 +1,5 @@ +--- +"@openai/agents-realtime": patch +--- + +fix: allow setting an initial tracing configuration for Realtime