We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42edc02 commit b117980Copy full SHA for b117980
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,7 @@ def trace_call_llm(
344
345
event_id: str,
346
llm_request: LlmRequest,
347
llm_response: LlmResponse,
348
349
350
"""Trace a language model call with comprehensive telemetry data.
351
@@ -413,4 +415,4 @@ def trace_call_llm(
413
415
414
416
417
# Do not modify this function
-def trace_send_data(): ...
418
+def trace_send_data(**kwargs): ...
0 commit comments