From 75fe87d191173461e1a91b84adf2e1ef8828ee07 Mon Sep 17 00:00:00 2001 From: MUHAMMAD SALMAN HUSSAIN <160324527+mshsheikh@users.noreply.github.com> Date: Mon, 28 Jul 2025 01:56:22 +0500 Subject: [PATCH] docs: remove non existent even_if_trace_running mention from trace docstring Removed incorrect reference to a parameter that does not exist in the trace docstring. This update only affects documentation and has no impact on runtime behavior. --- src/agents/tracing/create.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/agents/tracing/create.py b/src/agents/tracing/create.py index ac451abf5..9e2b27ca3 100644 --- a/src/agents/tracing/create.py +++ b/src/agents/tracing/create.py @@ -50,8 +50,7 @@ def trace( group_id: Optional grouping identifier to link multiple traces from the same conversation or process. For instance, you might use a chat thread ID. metadata: Optional dictionary of additional metadata to attach to the trace. - disabled: If True, we will return a Trace but the Trace will not be recorded. This will - not be checked if there's an existing trace and `even_if_trace_running` is True. + disabled: If True, we will return a Trace but the Trace will not be recorded. Returns: The newly created trace object.