-
Notifications
You must be signed in to change notification settings - Fork 783
GenAI Utils | Inference Type and Span Creation #3768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
keith-decker
wants to merge
29
commits into
open-telemetry:main
Choose a base branch
from
zhirafovod:util-genai-inference-clean
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+631
−13
Open
Changes from 27 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
73a764c
cherry pick changes from previous PR
keith-decker 0d749a9
move span utils to new file
keith-decker 77d9c3c
remove span state, use otel context for parent/child
keith-decker 054ebe9
flatten LLMInvocation to use attributes instead of dict keys
keith-decker 9d3926f
helper function and docstrings
keith-decker 635b7f8
Merge branch 'main' into util-genai-inference-clean
keith-decker 9837cf4
refactor: store span and context token in LLMInvocation instead of Sp…
keith-decker 1a172d1
refactor: rename prompts/chat_generations to input_messages/output_me…
keith-decker 465ca78
refactor: simplify TelemetryHandler API by moving invocation data man…
keith-decker cd5aaa6
refactor: update relative imports to absolute imports
keith-decker 8347d17
Update handler to use a context manager instead of start_llm and stop…
keith-decker 742a36f
resolve tox -e doc failure
keith-decker 00e08a8
safeguard against empty request-model
keith-decker 109625c
Merge branch 'main' into util-genai-inference-clean
keith-decker 80c94bf
fix tox typecheck errors for utils
keith-decker f07c61f
refactor: move tracer to generator, clean up dead code
keith-decker d6f722f
remove unused linting hint
keith-decker fdc7f50
back off stricter request-model requirements
keith-decker da20448
reintroduce manual start/stop for langchain callback flow
keith-decker c1ff846
Merge branch 'main' into util-genai-inference-clean
aabmass 4a08d7f
clean up context handler, clarify unit tests
keith-decker 243bf8d
remove generator concept
keith-decker 3d6c8da
Merge branch 'main' into util-genai-inference-clean
keith-decker 5f8cd1c
update token types
keith-decker e987d66
Merge branch 'main' into util-genai-inference-clean
keith-decker 51d28c0
code cleanup
keith-decker 88d0149
Merge branch 'main' into util-genai-inference-clean
keith-decker 188e84b
Merge branch 'main' into util-genai-inference-clean
keith-decker c264c46
Merge branch 'main' into util-genai-inference-clean
keith-decker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ dynamic = ["version"] | |
description = "OpenTelemetry GenAI Utils" | ||
readme = "README.rst" | ||
license = "Apache-2.0" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{ name = "OpenTelemetry Authors", email = "[email protected]" }, | ||
] | ||
|
@@ -25,8 +25,8 @@ classifiers = [ | |
"Programming Language :: Python :: 3.13", | ||
] | ||
dependencies = [ | ||
"opentelemetry-instrumentation ~= 0.51b0", | ||
"opentelemetry-semantic-conventions ~= 0.51b0", | ||
"opentelemetry-instrumentation ~= 0.57b0", | ||
"opentelemetry-semantic-conventions ~= 0.57b0", | ||
"opentelemetry-api>=1.31.0", | ||
] | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright The OpenTelemetry Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. |
180 changes: 180 additions & 0 deletions
180
util/opentelemetry-util-genai/src/opentelemetry/util/genai/handler.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
# Copyright The OpenTelemetry Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
""" | ||
Telemetry handler for GenAI invocations. | ||
|
||
This module exposes the `TelemetryHandler` class, which manages the lifecycle of | ||
GenAI (Generative AI) invocations and emits telemetry data (spans and related attributes). | ||
It supports starting, stopping, and failing LLM invocations. | ||
|
||
Classes: | ||
- TelemetryHandler: Manages GenAI invocation lifecycles and emits telemetry. | ||
|
||
Functions: | ||
- get_telemetry_handler: Returns a singleton `TelemetryHandler` instance. | ||
|
||
Usage: | ||
handler = get_telemetry_handler() | ||
|
||
# Create an invocation object with your request data | ||
# The span and context_token attributes are set by the TelemetryHandler, and | ||
# managed by the TelemetryHandler during the lifecycle of the span. | ||
|
||
# Use the context manager to manage the lifecycle of an LLM invocation. | ||
with handler.llm(invocation) as invocation: | ||
# Populate outputs and any additional attributes | ||
invocation.output_messages = [...] | ||
invocation.attributes.update({"more": "attrs"}) | ||
|
||
# Or, if you prefer to manage the lifecycle manually | ||
invocation = LLMInvocation( | ||
request_model="my-model", | ||
input_messages=[...], | ||
provider="my-provider", | ||
attributes={"custom": "attr"}, | ||
) | ||
|
||
# Start the invocation (opens a span) | ||
handler.start_llm(invocation) | ||
|
||
# Populate outputs and any additional attributes, then stop (closes the span) | ||
invocation.output_messages = [...] | ||
invocation.attributes.update({"more": "attrs"}) | ||
handler.stop_llm(invocation) | ||
|
||
# Or, in case of error | ||
handler.fail_llm(invocation, Error(type="...", message="...")) | ||
""" | ||
|
||
import time | ||
from contextlib import contextmanager | ||
from typing import Any, Iterator, Optional | ||
|
||
from opentelemetry import context as otel_context | ||
from opentelemetry import trace | ||
from opentelemetry.semconv._incubating.attributes import ( | ||
gen_ai_attributes as GenAI, | ||
) | ||
from opentelemetry.semconv.schemas import Schemas | ||
from opentelemetry.trace import ( | ||
SpanKind, | ||
Tracer, | ||
get_tracer, | ||
set_span_in_context, | ||
) | ||
from opentelemetry.util.genai.span_utils import ( | ||
_apply_error_attributes, | ||
_apply_finish_attributes, | ||
) | ||
from opentelemetry.util.genai.types import Error, LLMInvocation | ||
from opentelemetry.util.genai.version import __version__ | ||
|
||
|
||
class TelemetryHandler: | ||
""" | ||
High-level handler managing GenAI invocation lifecycles and emitting | ||
them as spans, metrics, and events. | ||
""" | ||
|
||
def __init__(self, **kwargs: Any): | ||
tracer_provider = kwargs.get("tracer_provider") | ||
tracer = get_tracer( | ||
__name__, | ||
__version__, | ||
tracer_provider, | ||
schema_url=Schemas.V1_36_0.value, | ||
) | ||
self._tracer: Tracer = tracer or trace.get_tracer(__name__) | ||
|
||
def start_llm( | ||
DylanRussell marked this conversation as resolved.
Show resolved
Hide resolved
|
||
self, | ||
invocation: LLMInvocation, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Another option here would be to use immutable types, e.g. breaking out |
||
) -> LLMInvocation: | ||
"""Start an LLM invocation and create a pending span entry.""" | ||
# Create a span and attach it as current; keep the token to detach later | ||
span = self._tracer.start_span( | ||
name=f"{GenAI.GenAiOperationNameValues.CHAT.value} {invocation.request_model}", | ||
kind=SpanKind.CLIENT, | ||
) | ||
invocation.span = span | ||
invocation.context_token = otel_context.attach( | ||
set_span_in_context(span) | ||
) | ||
return invocation | ||
|
||
def stop_llm(self, invocation: LLMInvocation) -> LLMInvocation: # pylint: disable=no-self-use | ||
"""Finalize an LLM invocation successfully and end its span.""" | ||
invocation.end_time = time.time() | ||
if invocation.context_token is None or invocation.span is None: | ||
# TODO: Provide feedback that this invocation was not started | ||
return invocation | ||
|
||
_apply_finish_attributes(invocation.span, invocation) | ||
# Detach context and end span | ||
otel_context.detach(invocation.context_token) | ||
invocation.span.end() | ||
return invocation | ||
|
||
def fail_llm( # pylint: disable=no-self-use | ||
self, invocation: LLMInvocation, error: Error | ||
) -> LLMInvocation: | ||
"""Fail an LLM invocation and end its span with error status.""" | ||
invocation.end_time = time.time() | ||
if invocation.context_token is None or invocation.span is None: | ||
# TODO: Provide feedback that this invocation was not started | ||
return invocation | ||
|
||
_apply_error_attributes(invocation.span, error) | ||
# Detach context and end span | ||
otel_context.detach(invocation.context_token) | ||
invocation.span.end() | ||
return invocation | ||
|
||
@contextmanager | ||
def llm( | ||
self, invocation: Optional[LLMInvocation] = None | ||
) -> Iterator[LLMInvocation]: | ||
"""Context manager for LLM invocations. | ||
|
||
Only set data attributes on the invocation object, do not modify the span or context. | ||
|
||
Starts the span on entry. On normal exit, finalizes the invocation and ends the span. | ||
If an exception occurs inside the context, marks the span as error, ends it, and | ||
re-raises the original exception. | ||
""" | ||
if invocation is None: | ||
invocation = LLMInvocation( | ||
request_model="", | ||
) | ||
self.start_llm(invocation) | ||
try: | ||
yield invocation | ||
except Exception as exc: | ||
self.fail_llm(invocation, Error(message=str(exc), type=type(exc))) | ||
raise | ||
self.stop_llm(invocation) | ||
|
||
|
||
def get_telemetry_handler(**kwargs: Any) -> TelemetryHandler: | ||
""" | ||
Returns a singleton TelemetryHandler instance. | ||
""" | ||
handler: Optional[TelemetryHandler] = getattr( | ||
get_telemetry_handler, "_default_handler", None | ||
) | ||
if handler is None: | ||
handler = TelemetryHandler(**kwargs) | ||
setattr(get_telemetry_handler, "_default_handler", handler) | ||
return handler |
134 changes: 134 additions & 0 deletions
134
util/opentelemetry-util-genai/src/opentelemetry/util/genai/span_utils.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
# Copyright The OpenTelemetry Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import json | ||
from dataclasses import asdict | ||
from typing import Any, Dict, List | ||
|
||
from opentelemetry.semconv._incubating.attributes import ( | ||
gen_ai_attributes as GenAI, | ||
) | ||
from opentelemetry.semconv.attributes import ( | ||
error_attributes as ErrorAttributes, | ||
) | ||
from opentelemetry.trace import ( | ||
Span, | ||
) | ||
from opentelemetry.trace.status import Status, StatusCode | ||
from opentelemetry.util.genai.types import ( | ||
Error, | ||
InputMessage, | ||
LLMInvocation, | ||
OutputMessage, | ||
) | ||
from opentelemetry.util.genai.utils import ( | ||
ContentCapturingMode, | ||
get_content_capturing_mode, | ||
is_experimental_mode, | ||
) | ||
|
||
|
||
def _apply_common_span_attributes( | ||
span: Span, invocation: LLMInvocation | ||
) -> None: | ||
"""Apply attributes shared by finish() and error() and compute metrics. | ||
|
||
Returns (genai_attributes) for use with metrics. | ||
""" | ||
request_model = invocation.request_model | ||
provider = invocation.provider | ||
span.update_name( | ||
f"{GenAI.GenAiOperationNameValues.CHAT.value} {request_model}".strip() | ||
) | ||
DylanRussell marked this conversation as resolved.
Show resolved
Hide resolved
|
||
span.set_attribute( | ||
GenAI.GEN_AI_OPERATION_NAME, GenAI.GenAiOperationNameValues.CHAT.value | ||
) | ||
if request_model: | ||
span.set_attribute(GenAI.GEN_AI_REQUEST_MODEL, request_model) | ||
if provider is not None: | ||
# TODO: clean provider name to match GenAiProviderNameValues? | ||
span.set_attribute(GenAI.GEN_AI_PROVIDER_NAME, provider) | ||
|
||
finish_reasons = [gen.finish_reason for gen in invocation.output_messages] | ||
if finish_reasons: | ||
span.set_attribute( | ||
GenAI.GEN_AI_RESPONSE_FINISH_REASONS, finish_reasons | ||
) | ||
|
||
if invocation.response_model_name is not None: | ||
span.set_attribute( | ||
GenAI.GEN_AI_RESPONSE_MODEL, invocation.response_model_name | ||
) | ||
if invocation.response_id is not None: | ||
span.set_attribute(GenAI.GEN_AI_RESPONSE_ID, invocation.response_id) | ||
if invocation.input_tokens is not None: | ||
span.set_attribute( | ||
GenAI.GEN_AI_USAGE_INPUT_TOKENS, invocation.input_tokens | ||
) | ||
if invocation.output_tokens is not None: | ||
span.set_attribute( | ||
GenAI.GEN_AI_USAGE_OUTPUT_TOKENS, invocation.output_tokens | ||
) | ||
|
||
|
||
def _maybe_set_span_messages( | ||
span: Span, | ||
input_messages: List[InputMessage], | ||
output_messages: List[OutputMessage], | ||
) -> None: | ||
if not is_experimental_mode() or get_content_capturing_mode() not in ( | ||
ContentCapturingMode.SPAN_ONLY, | ||
ContentCapturingMode.SPAN_AND_EVENT, | ||
): | ||
return | ||
if input_messages: | ||
span.set_attribute( | ||
GenAI.GEN_AI_INPUT_MESSAGES, | ||
json.dumps([asdict(message) for message in input_messages]), | ||
) | ||
if output_messages: | ||
span.set_attribute( | ||
GenAI.GEN_AI_OUTPUT_MESSAGES, | ||
json.dumps([asdict(message) for message in output_messages]), | ||
) | ||
|
||
|
||
def _set_span_extra_attributes( | ||
span: Span, | ||
attributes: Dict[str, Any], | ||
) -> None: | ||
for key, value in attributes.items(): | ||
span.set_attribute(key, value) | ||
|
||
|
||
def _apply_finish_attributes(span: Span, invocation: LLMInvocation) -> None: | ||
DylanRussell marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"""Apply attributes/messages common to finish() paths.""" | ||
_apply_common_span_attributes(span, invocation) | ||
_maybe_set_span_messages( | ||
span, invocation.input_messages, invocation.output_messages | ||
) | ||
_set_span_extra_attributes(span, invocation.attributes) | ||
|
||
|
||
def _apply_error_attributes(span: Span, error: Error) -> None: | ||
"""Apply status and error attributes common to error() paths.""" | ||
span.set_status(Status(StatusCode.ERROR, error.message)) | ||
if span.is_recording(): | ||
span.set_attribute(ErrorAttributes.ERROR_TYPE, error.type.__qualname__) | ||
|
||
|
||
__all__ = [ | ||
"_apply_finish_attributes", | ||
"_apply_error_attributes", | ||
] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.