judgeval 0.1.0__py3-none-any.whl → 0.23.0__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.
- judgeval/__init__.py +173 -10
- judgeval/api/__init__.py +523 -0
- judgeval/api/api_types.py +413 -0
- judgeval/cli.py +112 -0
- judgeval/constants.py +7 -30
- judgeval/data/__init__.py +1 -3
- judgeval/data/evaluation_run.py +125 -0
- judgeval/data/example.py +14 -40
- judgeval/data/judgment_types.py +396 -146
- judgeval/data/result.py +11 -18
- judgeval/data/scorer_data.py +3 -26
- judgeval/data/scripts/openapi_transform.py +5 -5
- judgeval/data/trace.py +115 -194
- judgeval/dataset/__init__.py +335 -0
- judgeval/env.py +55 -0
- judgeval/evaluation/__init__.py +346 -0
- judgeval/exceptions.py +28 -0
- judgeval/integrations/langgraph/__init__.py +13 -0
- judgeval/integrations/openlit/__init__.py +51 -0
- judgeval/judges/__init__.py +2 -2
- judgeval/judges/litellm_judge.py +77 -16
- judgeval/judges/together_judge.py +88 -17
- judgeval/judges/utils.py +7 -20
- judgeval/judgment_attribute_keys.py +55 -0
- judgeval/{common/logger.py → logger.py} +24 -8
- judgeval/prompt/__init__.py +330 -0
- judgeval/scorers/__init__.py +11 -11
- judgeval/scorers/agent_scorer.py +15 -19
- judgeval/scorers/api_scorer.py +21 -23
- judgeval/scorers/base_scorer.py +54 -36
- judgeval/scorers/example_scorer.py +1 -3
- judgeval/scorers/judgeval_scorers/api_scorers/__init__.py +2 -24
- judgeval/scorers/judgeval_scorers/api_scorers/answer_correctness.py +2 -10
- judgeval/scorers/judgeval_scorers/api_scorers/answer_relevancy.py +2 -2
- judgeval/scorers/judgeval_scorers/api_scorers/faithfulness.py +2 -10
- judgeval/scorers/judgeval_scorers/api_scorers/instruction_adherence.py +2 -14
- judgeval/scorers/judgeval_scorers/api_scorers/prompt_scorer.py +171 -59
- judgeval/scorers/score.py +64 -47
- judgeval/scorers/utils.py +2 -107
- judgeval/tracer/__init__.py +1111 -2
- judgeval/tracer/constants.py +1 -0
- judgeval/tracer/exporters/__init__.py +40 -0
- judgeval/tracer/exporters/s3.py +119 -0
- judgeval/tracer/exporters/store.py +59 -0
- judgeval/tracer/exporters/utils.py +32 -0
- judgeval/tracer/keys.py +63 -0
- judgeval/tracer/llm/__init__.py +7 -0
- judgeval/tracer/llm/config.py +78 -0
- judgeval/tracer/llm/constants.py +9 -0
- judgeval/tracer/llm/llm_anthropic/__init__.py +3 -0
- judgeval/tracer/llm/llm_anthropic/config.py +6 -0
- judgeval/tracer/llm/llm_anthropic/messages.py +452 -0
- judgeval/tracer/llm/llm_anthropic/messages_stream.py +322 -0
- judgeval/tracer/llm/llm_anthropic/wrapper.py +59 -0
- judgeval/tracer/llm/llm_google/__init__.py +3 -0
- judgeval/tracer/llm/llm_google/config.py +6 -0
- judgeval/tracer/llm/llm_google/generate_content.py +127 -0
- judgeval/tracer/llm/llm_google/wrapper.py +30 -0
- judgeval/tracer/llm/llm_openai/__init__.py +3 -0
- judgeval/tracer/llm/llm_openai/beta_chat_completions.py +216 -0
- judgeval/tracer/llm/llm_openai/chat_completions.py +501 -0
- judgeval/tracer/llm/llm_openai/config.py +6 -0
- judgeval/tracer/llm/llm_openai/responses.py +506 -0
- judgeval/tracer/llm/llm_openai/utils.py +42 -0
- judgeval/tracer/llm/llm_openai/wrapper.py +63 -0
- judgeval/tracer/llm/llm_together/__init__.py +3 -0
- judgeval/tracer/llm/llm_together/chat_completions.py +406 -0
- judgeval/tracer/llm/llm_together/config.py +6 -0
- judgeval/tracer/llm/llm_together/wrapper.py +52 -0
- judgeval/tracer/llm/providers.py +19 -0
- judgeval/tracer/managers.py +167 -0
- judgeval/tracer/processors/__init__.py +220 -0
- judgeval/tracer/utils.py +19 -0
- judgeval/trainer/__init__.py +14 -0
- judgeval/trainer/base_trainer.py +122 -0
- judgeval/trainer/config.py +123 -0
- judgeval/trainer/console.py +144 -0
- judgeval/trainer/fireworks_trainer.py +392 -0
- judgeval/trainer/trainable_model.py +252 -0
- judgeval/trainer/trainer.py +70 -0
- judgeval/utils/async_utils.py +39 -0
- judgeval/utils/decorators/__init__.py +0 -0
- judgeval/utils/decorators/dont_throw.py +37 -0
- judgeval/utils/decorators/use_once.py +13 -0
- judgeval/utils/file_utils.py +74 -28
- judgeval/utils/guards.py +36 -0
- judgeval/utils/meta.py +27 -0
- judgeval/utils/project.py +15 -0
- judgeval/utils/serialize.py +253 -0
- judgeval/utils/testing.py +70 -0
- judgeval/utils/url.py +10 -0
- judgeval/{version_check.py → utils/version_check.py} +5 -3
- judgeval/utils/wrappers/README.md +3 -0
- judgeval/utils/wrappers/__init__.py +15 -0
- judgeval/utils/wrappers/immutable_wrap_async.py +74 -0
- judgeval/utils/wrappers/immutable_wrap_async_iterator.py +84 -0
- judgeval/utils/wrappers/immutable_wrap_sync.py +66 -0
- judgeval/utils/wrappers/immutable_wrap_sync_iterator.py +84 -0
- judgeval/utils/wrappers/mutable_wrap_async.py +67 -0
- judgeval/utils/wrappers/mutable_wrap_sync.py +67 -0
- judgeval/utils/wrappers/py.typed +0 -0
- judgeval/utils/wrappers/utils.py +35 -0
- judgeval/v1/__init__.py +88 -0
- judgeval/v1/data/__init__.py +7 -0
- judgeval/v1/data/example.py +44 -0
- judgeval/v1/data/scorer_data.py +42 -0
- judgeval/v1/data/scoring_result.py +44 -0
- judgeval/v1/datasets/__init__.py +6 -0
- judgeval/v1/datasets/dataset.py +214 -0
- judgeval/v1/datasets/dataset_factory.py +94 -0
- judgeval/v1/evaluation/__init__.py +6 -0
- judgeval/v1/evaluation/evaluation.py +182 -0
- judgeval/v1/evaluation/evaluation_factory.py +17 -0
- judgeval/v1/instrumentation/__init__.py +6 -0
- judgeval/v1/instrumentation/llm/__init__.py +7 -0
- judgeval/v1/instrumentation/llm/config.py +78 -0
- judgeval/v1/instrumentation/llm/constants.py +11 -0
- judgeval/v1/instrumentation/llm/llm_anthropic/__init__.py +5 -0
- judgeval/v1/instrumentation/llm/llm_anthropic/config.py +6 -0
- judgeval/v1/instrumentation/llm/llm_anthropic/messages.py +414 -0
- judgeval/v1/instrumentation/llm/llm_anthropic/messages_stream.py +307 -0
- judgeval/v1/instrumentation/llm/llm_anthropic/wrapper.py +61 -0
- judgeval/v1/instrumentation/llm/llm_google/__init__.py +5 -0
- judgeval/v1/instrumentation/llm/llm_google/config.py +6 -0
- judgeval/v1/instrumentation/llm/llm_google/generate_content.py +121 -0
- judgeval/v1/instrumentation/llm/llm_google/wrapper.py +30 -0
- judgeval/v1/instrumentation/llm/llm_openai/__init__.py +5 -0
- judgeval/v1/instrumentation/llm/llm_openai/beta_chat_completions.py +212 -0
- judgeval/v1/instrumentation/llm/llm_openai/chat_completions.py +477 -0
- judgeval/v1/instrumentation/llm/llm_openai/config.py +6 -0
- judgeval/v1/instrumentation/llm/llm_openai/responses.py +472 -0
- judgeval/v1/instrumentation/llm/llm_openai/utils.py +41 -0
- judgeval/v1/instrumentation/llm/llm_openai/wrapper.py +63 -0
- judgeval/v1/instrumentation/llm/llm_together/__init__.py +5 -0
- judgeval/v1/instrumentation/llm/llm_together/chat_completions.py +382 -0
- judgeval/v1/instrumentation/llm/llm_together/config.py +6 -0
- judgeval/v1/instrumentation/llm/llm_together/wrapper.py +57 -0
- judgeval/v1/instrumentation/llm/providers.py +19 -0
- judgeval/v1/integrations/claude_agent_sdk/__init__.py +119 -0
- judgeval/v1/integrations/claude_agent_sdk/wrapper.py +564 -0
- judgeval/v1/integrations/langgraph/__init__.py +13 -0
- judgeval/v1/integrations/openlit/__init__.py +47 -0
- judgeval/v1/internal/api/__init__.py +525 -0
- judgeval/v1/internal/api/api_types.py +413 -0
- judgeval/v1/prompts/__init__.py +6 -0
- judgeval/v1/prompts/prompt.py +29 -0
- judgeval/v1/prompts/prompt_factory.py +189 -0
- judgeval/v1/py.typed +0 -0
- judgeval/v1/scorers/__init__.py +6 -0
- judgeval/v1/scorers/api_scorer.py +82 -0
- judgeval/v1/scorers/base_scorer.py +17 -0
- judgeval/v1/scorers/built_in/__init__.py +17 -0
- judgeval/v1/scorers/built_in/answer_correctness.py +28 -0
- judgeval/v1/scorers/built_in/answer_relevancy.py +28 -0
- judgeval/v1/scorers/built_in/built_in_factory.py +26 -0
- judgeval/v1/scorers/built_in/faithfulness.py +28 -0
- judgeval/v1/scorers/built_in/instruction_adherence.py +28 -0
- judgeval/v1/scorers/custom_scorer/__init__.py +6 -0
- judgeval/v1/scorers/custom_scorer/custom_scorer.py +50 -0
- judgeval/v1/scorers/custom_scorer/custom_scorer_factory.py +16 -0
- judgeval/v1/scorers/prompt_scorer/__init__.py +6 -0
- judgeval/v1/scorers/prompt_scorer/prompt_scorer.py +86 -0
- judgeval/v1/scorers/prompt_scorer/prompt_scorer_factory.py +85 -0
- judgeval/v1/scorers/scorers_factory.py +49 -0
- judgeval/v1/tracer/__init__.py +7 -0
- judgeval/v1/tracer/base_tracer.py +520 -0
- judgeval/v1/tracer/exporters/__init__.py +14 -0
- judgeval/v1/tracer/exporters/in_memory_span_exporter.py +25 -0
- judgeval/v1/tracer/exporters/judgment_span_exporter.py +42 -0
- judgeval/v1/tracer/exporters/noop_span_exporter.py +19 -0
- judgeval/v1/tracer/exporters/span_store.py +50 -0
- judgeval/v1/tracer/judgment_tracer_provider.py +70 -0
- judgeval/v1/tracer/processors/__init__.py +6 -0
- judgeval/v1/tracer/processors/_lifecycles/__init__.py +28 -0
- judgeval/v1/tracer/processors/_lifecycles/agent_id_processor.py +53 -0
- judgeval/v1/tracer/processors/_lifecycles/context_keys.py +11 -0
- judgeval/v1/tracer/processors/_lifecycles/customer_id_processor.py +29 -0
- judgeval/v1/tracer/processors/_lifecycles/registry.py +18 -0
- judgeval/v1/tracer/processors/judgment_span_processor.py +165 -0
- judgeval/v1/tracer/processors/noop_span_processor.py +42 -0
- judgeval/v1/tracer/tracer.py +67 -0
- judgeval/v1/tracer/tracer_factory.py +38 -0
- judgeval/v1/trainers/__init__.py +5 -0
- judgeval/v1/trainers/base_trainer.py +62 -0
- judgeval/v1/trainers/config.py +123 -0
- judgeval/v1/trainers/console.py +144 -0
- judgeval/v1/trainers/fireworks_trainer.py +392 -0
- judgeval/v1/trainers/trainable_model.py +252 -0
- judgeval/v1/trainers/trainers_factory.py +37 -0
- judgeval/v1/utils.py +18 -0
- judgeval/version.py +5 -0
- judgeval/warnings.py +4 -0
- judgeval-0.23.0.dist-info/METADATA +266 -0
- judgeval-0.23.0.dist-info/RECORD +201 -0
- judgeval-0.23.0.dist-info/entry_points.txt +2 -0
- judgeval/clients.py +0 -34
- judgeval/common/__init__.py +0 -13
- judgeval/common/api/__init__.py +0 -3
- judgeval/common/api/api.py +0 -352
- judgeval/common/api/constants.py +0 -165
- judgeval/common/exceptions.py +0 -27
- judgeval/common/storage/__init__.py +0 -6
- judgeval/common/storage/s3_storage.py +0 -98
- judgeval/common/tracer/__init__.py +0 -31
- judgeval/common/tracer/constants.py +0 -22
- judgeval/common/tracer/core.py +0 -1916
- judgeval/common/tracer/otel_exporter.py +0 -108
- judgeval/common/tracer/otel_span_processor.py +0 -234
- judgeval/common/tracer/span_processor.py +0 -37
- judgeval/common/tracer/span_transformer.py +0 -211
- judgeval/common/tracer/trace_manager.py +0 -92
- judgeval/common/utils.py +0 -940
- judgeval/data/datasets/__init__.py +0 -4
- judgeval/data/datasets/dataset.py +0 -341
- judgeval/data/datasets/eval_dataset_client.py +0 -214
- judgeval/data/tool.py +0 -5
- judgeval/data/trace_run.py +0 -37
- judgeval/evaluation_run.py +0 -75
- judgeval/integrations/langgraph.py +0 -843
- judgeval/judges/mixture_of_judges.py +0 -286
- judgeval/judgment_client.py +0 -369
- judgeval/rules.py +0 -521
- judgeval/run_evaluation.py +0 -684
- judgeval/scorers/judgeval_scorers/api_scorers/derailment_scorer.py +0 -14
- judgeval/scorers/judgeval_scorers/api_scorers/execution_order.py +0 -52
- judgeval/scorers/judgeval_scorers/api_scorers/hallucination.py +0 -28
- judgeval/scorers/judgeval_scorers/api_scorers/tool_dependency.py +0 -20
- judgeval/scorers/judgeval_scorers/api_scorers/tool_order.py +0 -27
- judgeval/utils/alerts.py +0 -93
- judgeval/utils/requests.py +0 -50
- judgeval-0.1.0.dist-info/METADATA +0 -202
- judgeval-0.1.0.dist-info/RECORD +0 -73
- {judgeval-0.1.0.dist-info → judgeval-0.23.0.dist-info}/WHEEL +0 -0
- {judgeval-0.1.0.dist-info → judgeval-0.23.0.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -0,0 +1,501 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from typing import (
|
|
3
|
+
TYPE_CHECKING,
|
|
4
|
+
Any,
|
|
5
|
+
Awaitable,
|
|
6
|
+
Callable,
|
|
7
|
+
Dict,
|
|
8
|
+
Iterator,
|
|
9
|
+
AsyncIterator,
|
|
10
|
+
Generator,
|
|
11
|
+
AsyncGenerator,
|
|
12
|
+
ParamSpec,
|
|
13
|
+
TypeVar,
|
|
14
|
+
)
|
|
15
|
+
from packaging import version
|
|
16
|
+
|
|
17
|
+
from judgeval.tracer.keys import AttributeKeys
|
|
18
|
+
from judgeval.tracer.utils import set_span_attribute
|
|
19
|
+
from judgeval.utils.serialize import safe_serialize
|
|
20
|
+
from judgeval.utils.wrappers import (
|
|
21
|
+
immutable_wrap_async,
|
|
22
|
+
immutable_wrap_sync,
|
|
23
|
+
mutable_wrap_sync,
|
|
24
|
+
mutable_wrap_async,
|
|
25
|
+
immutable_wrap_sync_iterator,
|
|
26
|
+
immutable_wrap_async_iterator,
|
|
27
|
+
)
|
|
28
|
+
from judgeval.tracer.llm.llm_openai.utils import (
|
|
29
|
+
openai_tokens_converter,
|
|
30
|
+
set_cost_attribute,
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
if TYPE_CHECKING:
|
|
34
|
+
from judgeval.tracer import Tracer
|
|
35
|
+
from openai import OpenAI, AsyncOpenAI
|
|
36
|
+
from openai.types.chat import ChatCompletion, ChatCompletionChunk
|
|
37
|
+
|
|
38
|
+
P = ParamSpec("P")
|
|
39
|
+
T = TypeVar("T")
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def _supports_stream_options() -> bool:
|
|
43
|
+
try:
|
|
44
|
+
import openai
|
|
45
|
+
|
|
46
|
+
return version.parse(openai.__version__) >= version.parse("1.26.0")
|
|
47
|
+
except Exception:
|
|
48
|
+
return False
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def wrap_chat_completions_create_sync(tracer: Tracer, client: OpenAI) -> None:
|
|
52
|
+
original_func = client.chat.completions.create
|
|
53
|
+
|
|
54
|
+
def dispatcher(*args: Any, **kwargs: Any) -> Any:
|
|
55
|
+
if kwargs.get("stream", False):
|
|
56
|
+
return _wrap_streaming_sync(tracer, original_func)(*args, **kwargs)
|
|
57
|
+
return _wrap_non_streaming_sync(tracer, original_func)(*args, **kwargs)
|
|
58
|
+
|
|
59
|
+
setattr(client.chat.completions, "create", dispatcher)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def _wrap_non_streaming_sync(
|
|
63
|
+
tracer: Tracer, original_func: Callable[..., ChatCompletion]
|
|
64
|
+
) -> Callable[..., ChatCompletion]:
|
|
65
|
+
def pre_hook(ctx: Dict[str, Any], *args: Any, **kwargs: Any) -> None:
|
|
66
|
+
ctx["span"] = tracer.get_tracer().start_span(
|
|
67
|
+
"OPENAI_API_CALL", attributes={AttributeKeys.JUDGMENT_SPAN_KIND: "llm"}
|
|
68
|
+
)
|
|
69
|
+
tracer._inject_judgment_context(ctx["span"])
|
|
70
|
+
set_span_attribute(
|
|
71
|
+
ctx["span"], AttributeKeys.GEN_AI_PROMPT, safe_serialize(kwargs)
|
|
72
|
+
)
|
|
73
|
+
ctx["model_name"] = kwargs.get("model", "")
|
|
74
|
+
set_span_attribute(
|
|
75
|
+
ctx["span"], AttributeKeys.JUDGMENT_LLM_MODEL_NAME, ctx["model_name"]
|
|
76
|
+
)
|
|
77
|
+
|
|
78
|
+
def post_hook(ctx: Dict[str, Any], result: ChatCompletion) -> None:
|
|
79
|
+
span = ctx.get("span")
|
|
80
|
+
if not span:
|
|
81
|
+
return
|
|
82
|
+
|
|
83
|
+
set_span_attribute(
|
|
84
|
+
span, AttributeKeys.GEN_AI_COMPLETION, safe_serialize(result)
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
usage_data = result.usage
|
|
88
|
+
if usage_data:
|
|
89
|
+
prompt_tokens = usage_data.prompt_tokens or 0
|
|
90
|
+
completion_tokens = usage_data.completion_tokens or 0
|
|
91
|
+
cache_read = 0
|
|
92
|
+
prompt_tokens_details = usage_data.prompt_tokens_details
|
|
93
|
+
if prompt_tokens_details:
|
|
94
|
+
cache_read = prompt_tokens_details.cached_tokens or 0
|
|
95
|
+
|
|
96
|
+
set_cost_attribute(span, usage_data)
|
|
97
|
+
|
|
98
|
+
prompt_tokens, completion_tokens, cache_read, cache_creation = (
|
|
99
|
+
openai_tokens_converter(
|
|
100
|
+
prompt_tokens,
|
|
101
|
+
completion_tokens,
|
|
102
|
+
cache_read,
|
|
103
|
+
0,
|
|
104
|
+
usage_data.total_tokens,
|
|
105
|
+
)
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
set_span_attribute(
|
|
109
|
+
span,
|
|
110
|
+
AttributeKeys.JUDGMENT_USAGE_NON_CACHED_INPUT_TOKENS,
|
|
111
|
+
prompt_tokens,
|
|
112
|
+
)
|
|
113
|
+
set_span_attribute(
|
|
114
|
+
span, AttributeKeys.JUDGMENT_USAGE_OUTPUT_TOKENS, completion_tokens
|
|
115
|
+
)
|
|
116
|
+
set_span_attribute(
|
|
117
|
+
span, AttributeKeys.JUDGMENT_USAGE_CACHE_READ_INPUT_TOKENS, cache_read
|
|
118
|
+
)
|
|
119
|
+
set_span_attribute(
|
|
120
|
+
span, AttributeKeys.JUDGMENT_USAGE_CACHE_CREATION_INPUT_TOKENS, 0
|
|
121
|
+
)
|
|
122
|
+
set_span_attribute(
|
|
123
|
+
span,
|
|
124
|
+
AttributeKeys.JUDGMENT_USAGE_METADATA,
|
|
125
|
+
safe_serialize(usage_data),
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
set_span_attribute(
|
|
129
|
+
span,
|
|
130
|
+
AttributeKeys.JUDGMENT_LLM_MODEL_NAME,
|
|
131
|
+
result.model or ctx["model_name"],
|
|
132
|
+
)
|
|
133
|
+
|
|
134
|
+
def error_hook(ctx: Dict[str, Any], error: Exception) -> None:
|
|
135
|
+
span = ctx.get("span")
|
|
136
|
+
if span:
|
|
137
|
+
span.record_exception(error)
|
|
138
|
+
|
|
139
|
+
def finally_hook(ctx: Dict[str, Any]) -> None:
|
|
140
|
+
span = ctx.get("span")
|
|
141
|
+
if span:
|
|
142
|
+
span.end()
|
|
143
|
+
|
|
144
|
+
return immutable_wrap_sync(
|
|
145
|
+
original_func,
|
|
146
|
+
pre_hook=pre_hook,
|
|
147
|
+
post_hook=post_hook,
|
|
148
|
+
error_hook=error_hook,
|
|
149
|
+
finally_hook=finally_hook,
|
|
150
|
+
)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
def _wrap_streaming_sync(
|
|
154
|
+
tracer: Tracer, original_func: Callable[..., Iterator[ChatCompletionChunk]]
|
|
155
|
+
) -> Callable[..., Iterator[ChatCompletionChunk]]:
|
|
156
|
+
def pre_hook(ctx: Dict[str, Any], *args: Any, **kwargs: Any) -> None:
|
|
157
|
+
ctx["span"] = tracer.get_tracer().start_span(
|
|
158
|
+
"OPENAI_API_CALL", attributes={AttributeKeys.JUDGMENT_SPAN_KIND: "llm"}
|
|
159
|
+
)
|
|
160
|
+
tracer._inject_judgment_context(ctx["span"])
|
|
161
|
+
set_span_attribute(
|
|
162
|
+
ctx["span"], AttributeKeys.GEN_AI_PROMPT, safe_serialize(kwargs)
|
|
163
|
+
)
|
|
164
|
+
ctx["model_name"] = kwargs.get("model", "")
|
|
165
|
+
set_span_attribute(
|
|
166
|
+
ctx["span"], AttributeKeys.JUDGMENT_LLM_MODEL_NAME, ctx["model_name"]
|
|
167
|
+
)
|
|
168
|
+
ctx["accumulated_content"] = ""
|
|
169
|
+
|
|
170
|
+
def mutate_kwargs_hook(ctx: Dict[str, Any], kwargs: Any) -> Any:
|
|
171
|
+
if "stream_options" not in kwargs and _supports_stream_options():
|
|
172
|
+
modified_kwargs = dict(kwargs)
|
|
173
|
+
modified_kwargs["stream_options"] = {"include_usage": True}
|
|
174
|
+
return modified_kwargs
|
|
175
|
+
return kwargs
|
|
176
|
+
|
|
177
|
+
def mutate_hook(
|
|
178
|
+
ctx: Dict[str, Any], result: Iterator[ChatCompletionChunk]
|
|
179
|
+
) -> Iterator[ChatCompletionChunk]:
|
|
180
|
+
def traced_generator() -> Generator[ChatCompletionChunk, None, None]:
|
|
181
|
+
for chunk in result:
|
|
182
|
+
yield chunk
|
|
183
|
+
|
|
184
|
+
def yield_hook(inner_ctx: Dict[str, Any], chunk: ChatCompletionChunk) -> None:
|
|
185
|
+
span = ctx.get("span")
|
|
186
|
+
if not span:
|
|
187
|
+
return
|
|
188
|
+
|
|
189
|
+
if chunk.choices and len(chunk.choices) > 0:
|
|
190
|
+
delta = chunk.choices[0].delta
|
|
191
|
+
if delta and delta.content:
|
|
192
|
+
ctx["accumulated_content"] = (
|
|
193
|
+
ctx.get("accumulated_content", "") + delta.content
|
|
194
|
+
)
|
|
195
|
+
|
|
196
|
+
if hasattr(chunk, "usage") and chunk.usage:
|
|
197
|
+
prompt_tokens = chunk.usage.prompt_tokens or 0
|
|
198
|
+
completion_tokens = chunk.usage.completion_tokens or 0
|
|
199
|
+
cache_read = 0
|
|
200
|
+
if chunk.usage.prompt_tokens_details:
|
|
201
|
+
cache_read = chunk.usage.prompt_tokens_details.cached_tokens or 0
|
|
202
|
+
|
|
203
|
+
set_cost_attribute(span, chunk.usage)
|
|
204
|
+
|
|
205
|
+
prompt_tokens, completion_tokens, cache_read, cache_creation = (
|
|
206
|
+
openai_tokens_converter(
|
|
207
|
+
prompt_tokens,
|
|
208
|
+
completion_tokens,
|
|
209
|
+
cache_read,
|
|
210
|
+
0,
|
|
211
|
+
chunk.usage.total_tokens,
|
|
212
|
+
)
|
|
213
|
+
)
|
|
214
|
+
|
|
215
|
+
set_span_attribute(
|
|
216
|
+
span,
|
|
217
|
+
AttributeKeys.JUDGMENT_USAGE_NON_CACHED_INPUT_TOKENS,
|
|
218
|
+
prompt_tokens,
|
|
219
|
+
)
|
|
220
|
+
set_span_attribute(
|
|
221
|
+
span, AttributeKeys.JUDGMENT_USAGE_OUTPUT_TOKENS, completion_tokens
|
|
222
|
+
)
|
|
223
|
+
set_span_attribute(
|
|
224
|
+
span,
|
|
225
|
+
AttributeKeys.JUDGMENT_USAGE_CACHE_READ_INPUT_TOKENS,
|
|
226
|
+
cache_read,
|
|
227
|
+
)
|
|
228
|
+
set_span_attribute(
|
|
229
|
+
span, AttributeKeys.JUDGMENT_USAGE_CACHE_CREATION_INPUT_TOKENS, 0
|
|
230
|
+
)
|
|
231
|
+
set_span_attribute(
|
|
232
|
+
span,
|
|
233
|
+
AttributeKeys.JUDGMENT_USAGE_METADATA,
|
|
234
|
+
safe_serialize(chunk.usage),
|
|
235
|
+
)
|
|
236
|
+
|
|
237
|
+
def post_hook_inner(inner_ctx: Dict[str, Any]) -> None:
|
|
238
|
+
span = ctx.get("span")
|
|
239
|
+
if span:
|
|
240
|
+
accumulated = ctx.get("accumulated_content", "")
|
|
241
|
+
set_span_attribute(span, AttributeKeys.GEN_AI_COMPLETION, accumulated)
|
|
242
|
+
|
|
243
|
+
def error_hook_inner(inner_ctx: Dict[str, Any], error: Exception) -> None:
|
|
244
|
+
span = ctx.get("span")
|
|
245
|
+
if span:
|
|
246
|
+
span.record_exception(error)
|
|
247
|
+
|
|
248
|
+
def finally_hook_inner(inner_ctx: Dict[str, Any]) -> None:
|
|
249
|
+
span = ctx.get("span")
|
|
250
|
+
if span:
|
|
251
|
+
span.end()
|
|
252
|
+
|
|
253
|
+
wrapped_generator = immutable_wrap_sync_iterator(
|
|
254
|
+
traced_generator,
|
|
255
|
+
yield_hook=yield_hook,
|
|
256
|
+
post_hook=post_hook_inner,
|
|
257
|
+
error_hook=error_hook_inner,
|
|
258
|
+
finally_hook=finally_hook_inner,
|
|
259
|
+
)
|
|
260
|
+
|
|
261
|
+
return wrapped_generator()
|
|
262
|
+
|
|
263
|
+
def error_hook(ctx: Dict[str, Any], error: Exception) -> None:
|
|
264
|
+
span = ctx.get("span")
|
|
265
|
+
if span:
|
|
266
|
+
span.record_exception(error)
|
|
267
|
+
|
|
268
|
+
return mutable_wrap_sync(
|
|
269
|
+
original_func,
|
|
270
|
+
pre_hook=pre_hook,
|
|
271
|
+
mutate_kwargs_hook=mutate_kwargs_hook,
|
|
272
|
+
mutate_hook=mutate_hook,
|
|
273
|
+
error_hook=error_hook,
|
|
274
|
+
)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
def wrap_chat_completions_create_async(tracer: Tracer, client: AsyncOpenAI) -> None:
|
|
278
|
+
original_func = client.chat.completions.create
|
|
279
|
+
|
|
280
|
+
async def dispatcher(*args: Any, **kwargs: Any) -> Any:
|
|
281
|
+
if kwargs.get("stream", False):
|
|
282
|
+
return await _wrap_streaming_async(tracer, original_func)(*args, **kwargs)
|
|
283
|
+
return await _wrap_non_streaming_async(tracer, original_func)(*args, **kwargs)
|
|
284
|
+
|
|
285
|
+
setattr(client.chat.completions, "create", dispatcher)
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
def _wrap_non_streaming_async(
|
|
289
|
+
tracer: Tracer, original_func: Callable[..., Awaitable[ChatCompletion]]
|
|
290
|
+
) -> Callable[..., Awaitable[ChatCompletion]]:
|
|
291
|
+
def pre_hook(ctx: Dict[str, Any], *args: Any, **kwargs: Any) -> None:
|
|
292
|
+
ctx["span"] = tracer.get_tracer().start_span(
|
|
293
|
+
"OPENAI_API_CALL", attributes={AttributeKeys.JUDGMENT_SPAN_KIND: "llm"}
|
|
294
|
+
)
|
|
295
|
+
tracer._inject_judgment_context(ctx["span"])
|
|
296
|
+
set_span_attribute(
|
|
297
|
+
ctx["span"], AttributeKeys.GEN_AI_PROMPT, safe_serialize(kwargs)
|
|
298
|
+
)
|
|
299
|
+
ctx["model_name"] = kwargs.get("model", "")
|
|
300
|
+
set_span_attribute(
|
|
301
|
+
ctx["span"], AttributeKeys.JUDGMENT_LLM_MODEL_NAME, ctx["model_name"]
|
|
302
|
+
)
|
|
303
|
+
|
|
304
|
+
def post_hook(ctx: Dict[str, Any], result: ChatCompletion) -> None:
|
|
305
|
+
span = ctx.get("span")
|
|
306
|
+
if not span:
|
|
307
|
+
return
|
|
308
|
+
|
|
309
|
+
set_span_attribute(
|
|
310
|
+
span, AttributeKeys.GEN_AI_COMPLETION, safe_serialize(result)
|
|
311
|
+
)
|
|
312
|
+
|
|
313
|
+
usage_data = result.usage
|
|
314
|
+
if usage_data:
|
|
315
|
+
prompt_tokens = usage_data.prompt_tokens or 0
|
|
316
|
+
completion_tokens = usage_data.completion_tokens or 0
|
|
317
|
+
cache_read = 0
|
|
318
|
+
prompt_tokens_details = usage_data.prompt_tokens_details
|
|
319
|
+
if prompt_tokens_details:
|
|
320
|
+
cache_read = prompt_tokens_details.cached_tokens or 0
|
|
321
|
+
|
|
322
|
+
set_cost_attribute(span, usage_data)
|
|
323
|
+
|
|
324
|
+
prompt_tokens, completion_tokens, cache_read, cache_creation = (
|
|
325
|
+
openai_tokens_converter(
|
|
326
|
+
prompt_tokens,
|
|
327
|
+
completion_tokens,
|
|
328
|
+
cache_read,
|
|
329
|
+
0,
|
|
330
|
+
usage_data.total_tokens,
|
|
331
|
+
)
|
|
332
|
+
)
|
|
333
|
+
|
|
334
|
+
set_span_attribute(
|
|
335
|
+
span,
|
|
336
|
+
AttributeKeys.JUDGMENT_USAGE_NON_CACHED_INPUT_TOKENS,
|
|
337
|
+
prompt_tokens,
|
|
338
|
+
)
|
|
339
|
+
set_span_attribute(
|
|
340
|
+
span, AttributeKeys.JUDGMENT_USAGE_OUTPUT_TOKENS, completion_tokens
|
|
341
|
+
)
|
|
342
|
+
set_span_attribute(
|
|
343
|
+
span, AttributeKeys.JUDGMENT_USAGE_CACHE_READ_INPUT_TOKENS, cache_read
|
|
344
|
+
)
|
|
345
|
+
set_span_attribute(
|
|
346
|
+
span, AttributeKeys.JUDGMENT_USAGE_CACHE_CREATION_INPUT_TOKENS, 0
|
|
347
|
+
)
|
|
348
|
+
set_span_attribute(
|
|
349
|
+
span,
|
|
350
|
+
AttributeKeys.JUDGMENT_USAGE_METADATA,
|
|
351
|
+
safe_serialize(usage_data),
|
|
352
|
+
)
|
|
353
|
+
|
|
354
|
+
set_span_attribute(
|
|
355
|
+
span,
|
|
356
|
+
AttributeKeys.JUDGMENT_LLM_MODEL_NAME,
|
|
357
|
+
result.model or ctx["model_name"],
|
|
358
|
+
)
|
|
359
|
+
|
|
360
|
+
def error_hook(ctx: Dict[str, Any], error: Exception) -> None:
|
|
361
|
+
span = ctx.get("span")
|
|
362
|
+
if span:
|
|
363
|
+
span.record_exception(error)
|
|
364
|
+
|
|
365
|
+
def finally_hook(ctx: Dict[str, Any]) -> None:
|
|
366
|
+
span = ctx.get("span")
|
|
367
|
+
if span:
|
|
368
|
+
span.end()
|
|
369
|
+
|
|
370
|
+
return immutable_wrap_async(
|
|
371
|
+
original_func,
|
|
372
|
+
pre_hook=pre_hook,
|
|
373
|
+
post_hook=post_hook,
|
|
374
|
+
error_hook=error_hook,
|
|
375
|
+
finally_hook=finally_hook,
|
|
376
|
+
)
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
def _wrap_streaming_async(
|
|
380
|
+
tracer: Tracer,
|
|
381
|
+
original_func: Callable[..., Awaitable[AsyncIterator[ChatCompletionChunk]]],
|
|
382
|
+
) -> Callable[..., Awaitable[AsyncIterator[ChatCompletionChunk]]]:
|
|
383
|
+
def pre_hook(ctx: Dict[str, Any], *args: Any, **kwargs: Any) -> None:
|
|
384
|
+
ctx["span"] = tracer.get_tracer().start_span(
|
|
385
|
+
"OPENAI_API_CALL", attributes={AttributeKeys.JUDGMENT_SPAN_KIND: "llm"}
|
|
386
|
+
)
|
|
387
|
+
tracer._inject_judgment_context(ctx["span"])
|
|
388
|
+
set_span_attribute(
|
|
389
|
+
ctx["span"], AttributeKeys.GEN_AI_PROMPT, safe_serialize(kwargs)
|
|
390
|
+
)
|
|
391
|
+
ctx["model_name"] = kwargs.get("model", "")
|
|
392
|
+
set_span_attribute(
|
|
393
|
+
ctx["span"], AttributeKeys.JUDGMENT_LLM_MODEL_NAME, ctx["model_name"]
|
|
394
|
+
)
|
|
395
|
+
ctx["accumulated_content"] = ""
|
|
396
|
+
|
|
397
|
+
def mutate_kwargs_hook(ctx: Dict[str, Any], kwargs: Any) -> Any:
|
|
398
|
+
if "stream_options" not in kwargs and _supports_stream_options():
|
|
399
|
+
modified_kwargs = dict(kwargs)
|
|
400
|
+
modified_kwargs["stream_options"] = {"include_usage": True}
|
|
401
|
+
return modified_kwargs
|
|
402
|
+
return kwargs
|
|
403
|
+
|
|
404
|
+
def mutate_hook(
|
|
405
|
+
ctx: Dict[str, Any], result: AsyncIterator[ChatCompletionChunk]
|
|
406
|
+
) -> AsyncIterator[ChatCompletionChunk]:
|
|
407
|
+
async def traced_generator() -> AsyncGenerator[ChatCompletionChunk, None]:
|
|
408
|
+
async for chunk in result:
|
|
409
|
+
yield chunk
|
|
410
|
+
|
|
411
|
+
def yield_hook(inner_ctx: Dict[str, Any], chunk: ChatCompletionChunk) -> None:
|
|
412
|
+
span = ctx.get("span")
|
|
413
|
+
if not span:
|
|
414
|
+
return
|
|
415
|
+
|
|
416
|
+
if chunk.choices and len(chunk.choices) > 0:
|
|
417
|
+
delta = chunk.choices[0].delta
|
|
418
|
+
if delta and delta.content:
|
|
419
|
+
ctx["accumulated_content"] = (
|
|
420
|
+
ctx.get("accumulated_content", "") + delta.content
|
|
421
|
+
)
|
|
422
|
+
|
|
423
|
+
if hasattr(chunk, "usage") and chunk.usage:
|
|
424
|
+
prompt_tokens = chunk.usage.prompt_tokens or 0
|
|
425
|
+
completion_tokens = chunk.usage.completion_tokens or 0
|
|
426
|
+
cache_read = 0
|
|
427
|
+
if chunk.usage.prompt_tokens_details:
|
|
428
|
+
cache_read = chunk.usage.prompt_tokens_details.cached_tokens or 0
|
|
429
|
+
|
|
430
|
+
set_cost_attribute(span, chunk.usage)
|
|
431
|
+
|
|
432
|
+
prompt_tokens, completion_tokens, cache_read, cache_creation = (
|
|
433
|
+
openai_tokens_converter(
|
|
434
|
+
prompt_tokens,
|
|
435
|
+
completion_tokens,
|
|
436
|
+
cache_read,
|
|
437
|
+
0,
|
|
438
|
+
chunk.usage.total_tokens,
|
|
439
|
+
)
|
|
440
|
+
)
|
|
441
|
+
|
|
442
|
+
set_span_attribute(
|
|
443
|
+
span,
|
|
444
|
+
AttributeKeys.JUDGMENT_USAGE_NON_CACHED_INPUT_TOKENS,
|
|
445
|
+
prompt_tokens,
|
|
446
|
+
)
|
|
447
|
+
set_span_attribute(
|
|
448
|
+
span, AttributeKeys.JUDGMENT_USAGE_OUTPUT_TOKENS, completion_tokens
|
|
449
|
+
)
|
|
450
|
+
set_span_attribute(
|
|
451
|
+
span,
|
|
452
|
+
AttributeKeys.JUDGMENT_USAGE_CACHE_READ_INPUT_TOKENS,
|
|
453
|
+
cache_read,
|
|
454
|
+
)
|
|
455
|
+
set_span_attribute(
|
|
456
|
+
span, AttributeKeys.JUDGMENT_USAGE_CACHE_CREATION_INPUT_TOKENS, 0
|
|
457
|
+
)
|
|
458
|
+
set_span_attribute(
|
|
459
|
+
span,
|
|
460
|
+
AttributeKeys.JUDGMENT_USAGE_METADATA,
|
|
461
|
+
safe_serialize(chunk.usage),
|
|
462
|
+
)
|
|
463
|
+
|
|
464
|
+
def post_hook_inner(inner_ctx: Dict[str, Any]) -> None:
|
|
465
|
+
span = ctx.get("span")
|
|
466
|
+
if span:
|
|
467
|
+
accumulated = ctx.get("accumulated_content", "")
|
|
468
|
+
set_span_attribute(span, AttributeKeys.GEN_AI_COMPLETION, accumulated)
|
|
469
|
+
|
|
470
|
+
def error_hook_inner(inner_ctx: Dict[str, Any], error: Exception) -> None:
|
|
471
|
+
span = ctx.get("span")
|
|
472
|
+
if span:
|
|
473
|
+
span.record_exception(error)
|
|
474
|
+
|
|
475
|
+
def finally_hook_inner(inner_ctx: Dict[str, Any]) -> None:
|
|
476
|
+
span = ctx.get("span")
|
|
477
|
+
if span:
|
|
478
|
+
span.end()
|
|
479
|
+
|
|
480
|
+
wrapped_generator = immutable_wrap_async_iterator(
|
|
481
|
+
traced_generator,
|
|
482
|
+
yield_hook=yield_hook,
|
|
483
|
+
post_hook=post_hook_inner,
|
|
484
|
+
error_hook=error_hook_inner,
|
|
485
|
+
finally_hook=finally_hook_inner,
|
|
486
|
+
)
|
|
487
|
+
|
|
488
|
+
return wrapped_generator()
|
|
489
|
+
|
|
490
|
+
def error_hook(ctx: Dict[str, Any], error: Exception) -> None:
|
|
491
|
+
span = ctx.get("span")
|
|
492
|
+
if span:
|
|
493
|
+
span.record_exception(error)
|
|
494
|
+
|
|
495
|
+
return mutable_wrap_async(
|
|
496
|
+
original_func,
|
|
497
|
+
pre_hook=pre_hook,
|
|
498
|
+
mutate_kwargs_hook=mutate_kwargs_hook,
|
|
499
|
+
mutate_hook=mutate_hook,
|
|
500
|
+
error_hook=error_hook,
|
|
501
|
+
)
|