Skip to content

Commit f050023

Browse files
committed
fix(tracing): fix distributed tracing requirments attributes remove unknown
1 parent 420fe5e commit f050023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

veadk/tracing/telemetry/telemetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def trace_call_llm(
227227
model_name=invocation_context.agent.model_name
228228
if isinstance(invocation_context.agent, Agent)
229229
else "",
230-
call_type=span.context.trace_state.get("call_type") or "<unknown_call_type>",
230+
call_type=span.context.trace_state.get("call_type") or "",
231231
)
232232

233233
llm_attributes_mapping = ATTRIBUTES.get("llm", {})

0 commit comments

Comments
 (0)