You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/execute_tool_scope.py
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ def start(
30
30
agent_details: AgentDetails,
31
31
tenant_details: TenantDetails,
32
32
request: Request|None=None,
33
+
parent_id: str|None=None,
33
34
) ->"ExecuteToolScope":
34
35
"""Creates and starts a new scope for tool execution tracing.
35
36
@@ -38,18 +39,21 @@ def start(
38
39
agent_details: The details of the agent making the call
39
40
tenant_details: The details of the tenant
40
41
request: Optional request details for additional context
42
+
parent_id: Optional parent Activity ID used to link this span to an upstream
Copy file name to clipboardExpand all lines: libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/inference_scope.py
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ def start(
34
34
agent_details: AgentDetails,
35
35
tenant_details: TenantDetails,
36
36
request: Request|None=None,
37
+
parent_id: str|None=None,
37
38
) ->"InferenceScope":
38
39
"""Creates and starts a new scope for inference tracing.
39
40
@@ -42,18 +43,21 @@ def start(
42
43
agent_details: The details of the agent making the call
43
44
tenant_details: The details of the tenant
44
45
request: Optional request details for additional context
46
+
parent_id: Optional parent Activity ID used to link this span to an upstream
0 commit comments