-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1214 from newrelic/llm-custom-attrs-api
LLM Custom Attributes Context Manager API
- Loading branch information
Showing
20 changed files
with
368 additions
and
187 deletions.
There are no files selected for viewing
This file contains 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 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,47 @@ | ||
# Copyright 2010 New Relic, Inc. | ||
# | ||
# 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 logging | ||
|
||
from newrelic.api.transaction import current_transaction | ||
|
||
_logger = logging.getLogger(__name__) | ||
|
||
|
||
class WithLlmCustomAttributes(object): | ||
def __init__(self, custom_attr_dict): | ||
transaction = current_transaction() | ||
if not custom_attr_dict or not isinstance(custom_attr_dict, dict): | ||
raise TypeError( | ||
"custom_attr_dict must be a non-empty dictionary. Received type: %s" % type(custom_attr_dict) | ||
) | ||
|
||
# Add "llm." prefix to all keys in attribute dictionary | ||
context_attrs = {k if k.startswith("llm.") else f"llm.{k}": v for k, v in custom_attr_dict.items()} | ||
|
||
self.attr_dict = context_attrs | ||
self.transaction = transaction | ||
|
||
def __enter__(self): | ||
if not self.transaction: | ||
_logger.warning("WithLlmCustomAttributes must be called within the scope of a transaction.") | ||
return self | ||
|
||
self.transaction._llm_context_attrs = self.attr_dict | ||
return self | ||
|
||
def __exit__(self, exc, value, tb): | ||
# Clear out context attributes once we leave the current context | ||
if self.transaction: | ||
del self.transaction._llm_context_attrs |
This file contains 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 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 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 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,50 @@ | ||
# Copyright 2010 New Relic, Inc. | ||
# | ||
# 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 pytest | ||
|
||
from newrelic.api.background_task import background_task | ||
from newrelic.api.llm_custom_attributes import WithLlmCustomAttributes | ||
from newrelic.api.transaction import current_transaction | ||
|
||
|
||
@background_task() | ||
def test_llm_custom_attributes(): | ||
transaction = current_transaction() | ||
with WithLlmCustomAttributes({"test": "attr", "test1": "attr1"}): | ||
assert transaction._llm_context_attrs == {"llm.test": "attr", "llm.test1": "attr1"} | ||
|
||
assert not hasattr(transaction, "_llm_context_attrs") | ||
|
||
|
||
@pytest.mark.parametrize("context_attrs", (None, "not-a-dict")) | ||
@background_task() | ||
def test_llm_custom_attributes_no_attrs(context_attrs): | ||
transaction = current_transaction() | ||
|
||
with pytest.raises(TypeError): | ||
with WithLlmCustomAttributes(context_attrs): | ||
pass | ||
|
||
assert not hasattr(transaction, "_llm_context_attrs") | ||
|
||
|
||
@background_task() | ||
def test_llm_custom_attributes_prefixed_attrs(): | ||
transaction = current_transaction() | ||
with WithLlmCustomAttributes({"llm.test": "attr", "test1": "attr1"}): | ||
# Validate API does not prefix attributes that already begin with "llm." | ||
assert transaction._llm_context_attrs == {"llm.test": "attr", "llm.test1": "attr1"} | ||
|
||
assert not hasattr(transaction, "_llm_context_attrs") |
This file contains 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 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
Oops, something went wrong.