We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42edc02 commit 68db19eCopy full SHA for 68db19e
veadk/tracing/telemetry/telemetry.py
@@ -305,6 +305,7 @@ def trace_tool_call(
305
tool: BaseTool,
306
args: dict[str, Any],
307
function_response_event: Event,
308
+ **kwargs,
309
) -> None:
310
"""Trace a tool function call with comprehensive telemetry data.
311
@@ -344,6 +345,8 @@ def trace_call_llm(
344
345
event_id: str,
346
llm_request: LlmRequest,
347
llm_response: LlmResponse,
348
+ *args,
349
350
351
"""Trace a language model call with comprehensive telemetry data.
352
@@ -413,4 +416,4 @@ def trace_call_llm(
413
416
414
417
415
418
# Do not modify this function
-def trace_send_data(): ...
419
+def trace_send_data(**kwargs): ...
0 commit comments