Skip to content

Commit

Permalink
remove unneeded change
Browse files Browse the repository at this point in the history
  • Loading branch information
lievan committed Jan 17, 2025
1 parent fb4bb8c commit 195cb4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddtrace/llmobs/_llmobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,11 @@ def _llmobs_span_event(cls, span: Span) -> Tuple[Dict[str, Any], bool]:
meta.pop("output")
metrics = span._get_ctx_item(METRICS) or {}
ml_app = _get_ml_app(span)
span._set_ctx_item(ML_APP, ml_app)

is_evaluation_span = _is_evaluation_span(span)
span._set_ctx_item(IS_EVALUATION_SPAN, is_evaluation_span)

span._set_ctx_item(ML_APP, ml_app)
parent_id = str(_get_llmobs_parent_id(span) or "undefined")

llmobs_span_event = {
Expand Down

0 comments on commit 195cb4a

Please sign in to comment.