We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d0c3c8 commit da74c9bCopy full SHA for da74c9b
src/openlayer/lib/integrations/litellm_tracer.py
@@ -169,7 +169,7 @@ def stream_chunks(
169
inputs={"prompt": kwargs.get("messages", [])},
170
) as step:
171
# #region agent log - Debug: Check if step is root after creation
172
- print(f"[OPENLAYER_DEBUG] litellm_tracer:stream_chunks | AFTER create_step | step_id={step.id[:8] if step.id else None} | is_root={_parent is None}", flush=True)
+ print(f"[OPENLAYER_DEBUG] litellm_tracer:stream_chunks | AFTER create_step | step_id={str(step.id)[:8] if step.id else None} | is_root={_parent is None}", flush=True)
173
# #endregion
174
try:
175
i = 0
0 commit comments