-
Notifications
You must be signed in to change notification settings - Fork 467
Labels
Milestone
Description
Please read this first
- Have you read the docs? Agents SDK docs YES
- Have you searched for related issues? Others may have faced similar issues. YES
Describe the bug
Using tracingDisabled: true as part of RealtimeSessionOptions does not disable traces. I can still see the traces on the OpenAI platform, including the input audio recording.
Debug information
- Agents SDK version: 0.2.1
- Runtime environment: browser
Repro steps
const openAIAgentsConfig = {
model: "gpt-realtime
tracingDisabled: true,
config: {
outputModalities: ['text', 'audio'],
voice: 'ballad',
audio: {
input: {
noiseReduction: {
type: 'near_field',
},
},
},
inputAudioTranscription: {
model: 'whisper-1',
},
},
};
this.session = new RealtimeSession(agent, openAIAgentsConfig);
Expected behavior
Traces should not be available in the OpenAI dashboard (https://platform.openai.com/logs?api=traces)