paid-python 0.3.2__py3-none-any.whl → 0.3.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- paid/tracing/tracing.py +5 -3
- {paid_python-0.3.2.dist-info → paid_python-0.3.3.dist-info}/METADATA +1 -1
- {paid_python-0.3.2.dist-info → paid_python-0.3.3.dist-info}/RECORD +5 -5
- {paid_python-0.3.2.dist-info → paid_python-0.3.3.dist-info}/LICENSE +0 -0
- {paid_python-0.3.2.dist-info → paid_python-0.3.3.dist-info}/WHEEL +0 -0
paid/tracing/tracing.py
CHANGED
|
@@ -66,8 +66,9 @@ class PaidSpanProcessor(SpanProcessor):
|
|
|
66
66
|
"""
|
|
67
67
|
|
|
68
68
|
SPAN_NAME_PREFIX = "paid.trace."
|
|
69
|
-
|
|
70
|
-
"
|
|
69
|
+
PROMPT_ATTRIBUTES_SUBSTRINGS = {
|
|
70
|
+
"prompt",
|
|
71
|
+
# "gen_ai.prompt",
|
|
71
72
|
"gen_ai.completion",
|
|
72
73
|
"gen_ai.request.messages",
|
|
73
74
|
"gen_ai.response.messages",
|
|
@@ -76,6 +77,7 @@ class PaidSpanProcessor(SpanProcessor):
|
|
|
76
77
|
"llm.invocation_parameters",
|
|
77
78
|
"output.value",
|
|
78
79
|
"input.value",
|
|
80
|
+
# "langchain.prompt",
|
|
79
81
|
}
|
|
80
82
|
|
|
81
83
|
def on_start(self, span: Span, parent_context: Optional[Context] = None) -> None:
|
|
@@ -125,7 +127,7 @@ class PaidSpanProcessor(SpanProcessor):
|
|
|
125
127
|
filtered_attrs = {
|
|
126
128
|
k: v
|
|
127
129
|
for k, v in original_attributes.items()
|
|
128
|
-
if not any(k
|
|
130
|
+
if not any(substr in k for substr in self.PROMPT_ATTRIBUTES_SUBSTRINGS)
|
|
129
131
|
}
|
|
130
132
|
# This works because the exporter reads attributes during serialization
|
|
131
133
|
object.__setattr__(span, "_attributes", filtered_attrs)
|
|
@@ -42,7 +42,7 @@ paid/tracing/context_data.py,sha256=oiLocz-9qDqB5nQzJlrLsc2Mkr9MaNt_yF_hjppobKc,
|
|
|
42
42
|
paid/tracing/context_manager.py,sha256=ZQtsJ9JPxTwn2t4AW26WpYboaOEZdI2T1Sw0Rwsbf-E,8470
|
|
43
43
|
paid/tracing/distributed_tracing.py,sha256=Vht3U8QJmT5jlRVnrybTn-cI1RPuVtyb3V4eTu6gA4g,3991
|
|
44
44
|
paid/tracing/signal.py,sha256=PfYxF6EFQS8j7RY5_C5NXrCBVu9Hq2E2tyG4fdQScJk,3252
|
|
45
|
-
paid/tracing/tracing.py,sha256
|
|
45
|
+
paid/tracing/tracing.py,sha256=HnQjLTfvrEqL_44pXGo-fYh8KXlWBh0ozp3omB6wuTI,14848
|
|
46
46
|
paid/tracing/wrappers/__init__.py,sha256=IIleLB_JUbzLw7FshrU2VHZAKF3dZHMGy1O5zCBwwqM,1588
|
|
47
47
|
paid/tracing/wrappers/anthropic/__init__.py,sha256=_x1fjySAQxuT5cIGO_jU09LiGcZH-WQLqKg8mUFAu2w,115
|
|
48
48
|
paid/tracing/wrappers/anthropic/anthropicWrapper.py,sha256=pGchbOb41CbTxc7H8xXoM-LjR085spqrzXqCVC_rrFk,4913
|
|
@@ -99,7 +99,7 @@ paid/usage/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
|
99
99
|
paid/usage/client.py,sha256=280WJuepoovk3BAVbAx2yN2Q_qBdvx3CcPkLu8lXslc,3030
|
|
100
100
|
paid/usage/raw_client.py,sha256=2acg5C4lxuZodZjepU9QYF0fmBxgG-3ZgXs1zUJG-wM,3709
|
|
101
101
|
paid/version.py,sha256=QIpDFnOrxMxrs86eL0iNH0mSZ1DO078wWHYY9TYAoew,78
|
|
102
|
-
paid_python-0.3.
|
|
103
|
-
paid_python-0.3.
|
|
104
|
-
paid_python-0.3.
|
|
105
|
-
paid_python-0.3.
|
|
102
|
+
paid_python-0.3.3.dist-info/LICENSE,sha256=Nz4baY1zvv0Qy7lqrQtbaiMhmEeGr2Q7A93aqzpml4c,1071
|
|
103
|
+
paid_python-0.3.3.dist-info/METADATA,sha256=tb9zMnJfciOmVMIwq6G2_R70gk3djrPpXnI50Uootiw,22335
|
|
104
|
+
paid_python-0.3.3.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
105
|
+
paid_python-0.3.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|