judgeval 0.11.0__py3-none-any.whl → 0.12.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 CHANGED
@@ -5,8 +5,8 @@ from judgeval.evaluation import run_eval
5
5
  from judgeval.data.evaluation_run import ExampleEvaluationRun
6
6
 
7
7
 
8
- from typing import List, Optional, Union
9
- from judgeval.scorers import APIScorerConfig
8
+ from typing import List, Optional, Union, Sequence
9
+ from judgeval.scorers import ExampleAPIScorerConfig
10
10
  from judgeval.scorers.example_scorer import ExampleScorer
11
11
  from judgeval.data.example import Example
12
12
  from judgeval.logger import judgeval_logger
@@ -39,7 +39,7 @@ class JudgmentClient(metaclass=SingletonMeta):
39
39
  def run_evaluation(
40
40
  self,
41
41
  examples: List[Example],
42
- scorers: List[Union[APIScorerConfig, ExampleScorer]],
42
+ scorers: Sequence[Union[ExampleAPIScorerConfig, ExampleScorer]],
43
43
  project_name: str = "default_project",
44
44
  eval_run_name: str = "default_eval_run",
45
45
  model: str = JUDGMENT_DEFAULT_GPT_MODEL,
@@ -1,4 +1,4 @@
1
- from typing import List, Optional, Union, Tuple
1
+ from typing import List, Optional, Union, Tuple, Sequence
2
2
  from pydantic import field_validator, model_validator, Field, BaseModel
3
3
  from datetime import datetime, timezone
4
4
  import uuid
@@ -19,8 +19,10 @@ class EvaluationRun(BaseModel):
19
19
  default_factory=lambda: datetime.now(timezone.utc).isoformat()
20
20
  )
21
21
  custom_scorers: List[ExampleScorer] = Field(default_factory=list)
22
- judgment_scorers: List[APIScorerConfig] = Field(default_factory=list)
23
- scorers: List[Union[ExampleScorer, APIScorerConfig]] = Field(default_factory=list)
22
+ judgment_scorers: Sequence[APIScorerConfig] = Field(default_factory=list)
23
+ scorers: Sequence[Union[ExampleScorer, APIScorerConfig]] = Field(
24
+ default_factory=list
25
+ )
24
26
  model: str
25
27
 
26
28
  def __init__(
@@ -1,7 +1,10 @@
1
1
  from judgeval.scorers.api_scorer import (
2
2
  APIScorerConfig,
3
+ ExampleAPIScorerConfig,
4
+ TraceAPIScorerConfig,
3
5
  )
4
6
  from judgeval.scorers.base_scorer import BaseScorer
7
+ from judgeval.scorers.example_scorer import ExampleScorer
5
8
  from judgeval.scorers.judgeval_scorers.api_scorers import (
6
9
  FaithfulnessScorer,
7
10
  AnswerRelevancyScorer,
@@ -13,7 +16,10 @@ from judgeval.scorers.judgeval_scorers.api_scorers import (
13
16
 
14
17
  __all__ = [
15
18
  "APIScorerConfig",
19
+ "ExampleAPIScorerConfig",
20
+ "TraceAPIScorerConfig",
16
21
  "BaseScorer",
22
+ "ExampleScorer",
17
23
  "TracePromptScorer",
18
24
  "PromptScorer",
19
25
  "FaithfulnessScorer",
@@ -63,3 +63,11 @@ class APIScorerConfig(BaseModel):
63
63
 
64
64
  def __str__(self):
65
65
  return f"JudgmentScorer(score_type={self.score_type.value}, threshold={self.threshold})"
66
+
67
+
68
+ class ExampleAPIScorerConfig(APIScorerConfig):
69
+ pass
70
+
71
+
72
+ class TraceAPIScorerConfig(APIScorerConfig):
73
+ pass
@@ -6,13 +6,13 @@ TODO add link to docs page for this scorer
6
6
  """
7
7
 
8
8
  # Internal imports
9
- from judgeval.scorers.api_scorer import APIScorerConfig
9
+ from judgeval.scorers.api_scorer import ExampleAPIScorerConfig
10
10
  from judgeval.constants import APIScorerType
11
11
  from judgeval.data import ExampleParams
12
12
  from typing import List
13
13
 
14
14
 
15
- class AnswerCorrectnessScorer(APIScorerConfig):
15
+ class AnswerCorrectnessScorer(ExampleAPIScorerConfig):
16
16
  score_type: APIScorerType = APIScorerType.ANSWER_CORRECTNESS
17
17
  required_params: List[ExampleParams] = [
18
18
  ExampleParams.INPUT,
@@ -1,10 +1,10 @@
1
- from judgeval.scorers.api_scorer import APIScorerConfig
1
+ from judgeval.scorers.api_scorer import ExampleAPIScorerConfig
2
2
  from judgeval.constants import APIScorerType
3
3
  from judgeval.data import ExampleParams
4
4
  from typing import List
5
5
 
6
6
 
7
- class AnswerRelevancyScorer(APIScorerConfig):
7
+ class AnswerRelevancyScorer(ExampleAPIScorerConfig):
8
8
  score_type: APIScorerType = APIScorerType.ANSWER_RELEVANCY
9
9
  required_params: List[ExampleParams] = [
10
10
  ExampleParams.INPUT,
@@ -6,13 +6,13 @@ TODO add link to docs page for this scorer
6
6
  """
7
7
 
8
8
  # Internal imports
9
- from judgeval.scorers.api_scorer import APIScorerConfig
9
+ from judgeval.scorers.api_scorer import ExampleAPIScorerConfig
10
10
  from judgeval.constants import APIScorerType
11
11
  from judgeval.data import ExampleParams
12
12
  from typing import List
13
13
 
14
14
 
15
- class FaithfulnessScorer(APIScorerConfig):
15
+ class FaithfulnessScorer(ExampleAPIScorerConfig):
16
16
  score_type: APIScorerType = APIScorerType.FAITHFULNESS
17
17
  required_params: List[ExampleParams] = [
18
18
  ExampleParams.INPUT,
@@ -6,12 +6,12 @@ TODO add link to docs page for this scorer
6
6
  """
7
7
 
8
8
  # Internal imports
9
- from judgeval.scorers.api_scorer import APIScorerConfig
9
+ from judgeval.scorers.api_scorer import ExampleAPIScorerConfig
10
10
  from judgeval.constants import APIScorerType
11
11
  from judgeval.data import ExampleParams
12
12
 
13
13
 
14
- class InstructionAdherenceScorer(APIScorerConfig):
14
+ class InstructionAdherenceScorer(ExampleAPIScorerConfig):
15
15
  def __init__(self, threshold: float):
16
16
  super().__init__(
17
17
  threshold=threshold,
@@ -1,5 +1,7 @@
1
1
  from judgeval.scorers.api_scorer import (
2
2
  APIScorerConfig,
3
+ ExampleAPIScorerConfig,
4
+ TraceAPIScorerConfig,
3
5
  )
4
6
  from judgeval.constants import APIScorerType
5
7
  from typing import Dict, Any, Optional
@@ -282,9 +284,9 @@ class BasePromptScorer(ABC, APIScorerConfig):
282
284
  return base
283
285
 
284
286
 
285
- class PromptScorer(BasePromptScorer, APIScorerConfig):
287
+ class PromptScorer(BasePromptScorer, ExampleAPIScorerConfig):
286
288
  pass
287
289
 
288
290
 
289
- class TracePromptScorer(BasePromptScorer, APIScorerConfig):
291
+ class TracePromptScorer(BasePromptScorer, TraceAPIScorerConfig):
290
292
  pass
@@ -43,7 +43,7 @@ from judgeval.env import (
43
43
  JUDGMENT_ORG_ID,
44
44
  )
45
45
  from judgeval.logger import judgeval_logger
46
- from judgeval.scorers.api_scorer import APIScorerConfig
46
+ from judgeval.scorers.api_scorer import TraceAPIScorerConfig, ExampleAPIScorerConfig
47
47
  from judgeval.scorers.example_scorer import ExampleScorer
48
48
  from judgeval.tracer.constants import JUDGEVAL_TRACER_INSTRUMENTING_MODULE_NAME
49
49
  from judgeval.tracer.managers import (
@@ -328,7 +328,7 @@ class Tracer:
328
328
  run_condition = scorer_config.run_condition
329
329
  sampling_rate = scorer_config.sampling_rate
330
330
 
331
- if not isinstance(scorer, (APIScorerConfig)):
331
+ if not isinstance(scorer, (TraceAPIScorerConfig)):
332
332
  judgeval_logger.error(
333
333
  "Scorer must be an instance of TraceAPIScorerConfig, got %s, skipping evaluation."
334
334
  % type(scorer)
@@ -861,7 +861,7 @@ class Tracer:
861
861
  self,
862
862
  /,
863
863
  *,
864
- scorer: Union[APIScorerConfig, ExampleScorer],
864
+ scorer: Union[ExampleAPIScorerConfig, ExampleScorer],
865
865
  example: Example,
866
866
  model: str = JUDGMENT_DEFAULT_GPT_MODEL,
867
867
  sampling_rate: float = 1.0,
@@ -870,9 +870,9 @@ class Tracer:
870
870
  judgeval_logger.info("Evaluation is not enabled, skipping evaluation")
871
871
  return
872
872
 
873
- if not isinstance(scorer, (APIScorerConfig, ExampleScorer)):
873
+ if not isinstance(scorer, (ExampleAPIScorerConfig, ExampleScorer)):
874
874
  judgeval_logger.error(
875
- "Scorer must be an instance of ExampleAPIScorerConfig or BaseScorer, got %s, skipping evaluation."
875
+ "Scorer must be an instance of ExampleAPIScorerConfig or ExampleScorer, got %s, skipping evaluation."
876
876
  % type(scorer)
877
877
  )
878
878
  return
@@ -901,7 +901,7 @@ class Tracer:
901
901
  span_context = self.get_current_span().get_span_context()
902
902
  trace_id = format(span_context.trace_id, "032x")
903
903
  span_id = format(span_context.span_id, "016x")
904
- hosted_scoring = isinstance(scorer, APIScorerConfig) or (
904
+ hosted_scoring = isinstance(scorer, ExampleAPIScorerConfig) or (
905
905
  isinstance(scorer, ExampleScorer) and scorer.server_hosted
906
906
  )
907
907
  eval_run_name = f"async_evaluate_{span_id}" # note this name doesnt matter because we don't save the experiment only the example and scorer_data
judgeval/tracer/utils.py CHANGED
@@ -2,7 +2,7 @@ from typing import Any
2
2
  from opentelemetry.trace import Span
3
3
  from pydantic import BaseModel
4
4
  from typing import Callable, Optional
5
- from judgeval.scorers.api_scorer import APIScorerConfig
5
+ from judgeval.scorers.api_scorer import TraceAPIScorerConfig
6
6
  from judgeval.env import JUDGMENT_DEFAULT_GPT_MODEL
7
7
 
8
8
 
@@ -14,7 +14,7 @@ def set_span_attribute(span: Span, name: str, value: Any):
14
14
 
15
15
 
16
16
  class TraceScorerConfig(BaseModel):
17
- scorer: APIScorerConfig
17
+ scorer: TraceAPIScorerConfig
18
18
  model: str = JUDGMENT_DEFAULT_GPT_MODEL
19
19
  sampling_rate: float = 1.0
20
20
  run_condition: Optional[Callable[..., bool]] = None
@@ -10,7 +10,7 @@ from judgeval.tracer.exporters.store import SpanStore
10
10
  from judgeval.tracer.exporters import InMemorySpanExporter
11
11
  from judgeval.tracer.keys import AttributeKeys
12
12
  from judgeval import JudgmentClient
13
- from judgeval.scorers import BaseScorer, APIScorerConfig
13
+ from judgeval.scorers import ExampleScorer, ExampleAPIScorerConfig
14
14
  from judgeval.data import Example
15
15
  from .console import _spinner_progress, _print_progress, _print_progress_update
16
16
  from judgeval.exceptions import JudgmentRuntimeError
@@ -156,7 +156,7 @@ class JudgmentTrainer:
156
156
  async def generate_rollouts_and_rewards(
157
157
  self,
158
158
  agent_function: Callable[[Any], Any],
159
- scorers: List[Union[APIScorerConfig, BaseScorer]],
159
+ scorers: List[Union[ExampleAPIScorerConfig, ExampleScorer]],
160
160
  prompts: List[Any],
161
161
  num_prompts_per_step: Optional[int] = None,
162
162
  num_generations_per_prompt: Optional[int] = None,
@@ -266,7 +266,7 @@ class JudgmentTrainer:
266
266
  async def run_reinforcement_learning(
267
267
  self,
268
268
  agent_function: Callable[[Any], Any],
269
- scorers: List[Union[APIScorerConfig, BaseScorer]],
269
+ scorers: List[Union[ExampleAPIScorerConfig, ExampleScorer]],
270
270
  prompts: List[Any],
271
271
  ) -> ModelConfig:
272
272
  """
@@ -372,7 +372,7 @@ class JudgmentTrainer:
372
372
  async def train(
373
373
  self,
374
374
  agent_function: Callable[[Any], Any],
375
- scorers: List[Union[APIScorerConfig, BaseScorer]],
375
+ scorers: List[Union[ExampleAPIScorerConfig, ExampleScorer]],
376
376
  prompts: List[Any],
377
377
  rft_provider: Optional[str] = None,
378
378
  ) -> ModelConfig:
judgeval/version.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "0.0.0"
1
+ __version__ = "0.12.0"
2
2
 
3
3
 
4
4
  def get_version() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: judgeval
3
- Version: 0.11.0
3
+ Version: 0.12.0
4
4
  Summary: Judgeval Package
5
5
  Project-URL: Homepage, https://github.com/JudgmentLabs/judgeval
6
6
  Project-URL: Issues, https://github.com/JudgmentLabs/judgeval/issues
@@ -1,15 +1,15 @@
1
- judgeval/__init__.py,sha256=-Wu443FzOqVtrBVhiw9mzBglxn1nwrpqy1BgcKxOT1U,4929
1
+ judgeval/__init__.py,sha256=LDL_vOvI6LmMwbVt6NMPwponDeEOaGHV-nd_0wSCLHM,4957
2
2
  judgeval/cli.py,sha256=R5IiIQmSVg21kQHX2kL3sOeXCxvvAMSqyva3Z9AoSXc,1560
3
3
  judgeval/constants.py,sha256=h7Cuf_2uvNzHZi8nqRFoMpvsQUZMS3mlNB3s2uduse8,3557
4
4
  judgeval/env.py,sha256=QO_77E2oX5LLf29XgqLdUoYUIqEaGxd9mcCco6rzS-w,2445
5
5
  judgeval/exceptions.py,sha256=tTbfe4yoOtPXmn22UQz9-6a-5PT9uOko85xaRRwr0Sw,621
6
6
  judgeval/logger.py,sha256=ZWbp0QfT1CJnQIjV-Zle4n489nFCKEmD2-ukx--iiow,1553
7
- judgeval/version.py,sha256=kJtYsih3hTYZ_rY_Lt0RcFqvjAfF5Xo1uNq0jZWJ5pw,73
7
+ judgeval/version.py,sha256=necdb4jxf2rIhW5LPI_UhDC8zSb9h-dNqtKbwoLv6z8,74
8
8
  judgeval/warnings.py,sha256=LbGte14ppiFjrkp-JJYueZ40NWFvMkWRvPXr6r-fUWw,73
9
9
  judgeval/api/__init__.py,sha256=3Pm0qQ4ZQj76jUsJVrnuazRnYcqF3pzM_Wv_Z6lOv0w,13216
10
10
  judgeval/api/api_types.py,sha256=AEh_9WpL0wTDUKZ0CwphkiGV3IeysBgTE9FzX4VYPic,6528
11
11
  judgeval/data/__init__.py,sha256=1tU0EN0ThIfQ1fad5I3dKxAfTcZ5U8cvTLcQ6qLVLU0,407
12
- judgeval/data/evaluation_run.py,sha256=7fcR7wB02U1dnwOfdwpoC6Zyu3Qx7wEhlZSpQ_vpd2M,4734
12
+ judgeval/data/evaluation_run.py,sha256=N47waxScMFKvGBxADX2FrfjW4wT5Zqd8n1PZKWb7JMA,4766
13
13
  judgeval/data/example.py,sha256=eGJpF-lyUH734Cg90B7WtU9f8iKoS3VFGeV6R-GVCCc,1039
14
14
  judgeval/data/judgment_types.py,sha256=8cGuj6VAHjYPfmHZL_Bb4D0D2bLP0V9-_Wec2WZhjKA,12130
15
15
  judgeval/data/result.py,sha256=XufFGSAkBDfevPUmzSgsR9HEqytISkM0U5HkhJmsjpY,2102
@@ -25,9 +25,9 @@ judgeval/judges/base_judge.py,sha256=_dz0qWsKRxzXxpRY9l6mrxTRYPSF2FE4ZXkrzhZ4gbY
25
25
  judgeval/judges/litellm_judge.py,sha256=5vEF0IUo7HVWnOF2ww-DMke8Xkarnz32B_qbgKjc0-I,4182
26
26
  judgeval/judges/together_judge.py,sha256=GzwlXZJzle8hT-vWKmq39JyIeanJqJfHDOkrksUbzk0,4398
27
27
  judgeval/judges/utils.py,sha256=ITbYwvjU3o9-FIAReFvxh24yJrx9LV3l9BnSBgKUpxg,2068
28
- judgeval/scorers/__init__.py,sha256=1rSMIw52Ov4YDbm6-bpISWC36ND_0x8d4C62xY5Pe04,553
28
+ judgeval/scorers/__init__.py,sha256=pomKzEy4YNFyygYp8vbS3co8iB5CMstRkQwdUgi1u4g,744
29
29
  judgeval/scorers/agent_scorer.py,sha256=-qcNSkY6i7ur2LXkM7H1jTKuuFbDuXbjTq42o3vjeQ8,595
30
- judgeval/scorers/api_scorer.py,sha256=M7cwJ2YY2Mw0pCo1UH-29jwrNd2PdiBRdQtmWS5ijXA,2173
30
+ judgeval/scorers/api_scorer.py,sha256=8TUJut9r74v-qMACiSKAUbDI1v3ZItPXrTz8s4_Lrgk,2287
31
31
  judgeval/scorers/base_scorer.py,sha256=hsMuqdW8QtW5n9JzruXyaZC7im2K2sSmz1RDkbMisJ4,2702
32
32
  judgeval/scorers/example_scorer.py,sha256=o_BGUztJXjnKnuOqIa9T4PXe0wPoWg63FyH518N1LxA,561
33
33
  judgeval/scorers/exceptions.py,sha256=ACDHK5-TWiF3NTk-wycaedpbrdobm-CvvC1JA_iP-Mk,179
@@ -35,17 +35,17 @@ judgeval/scorers/score.py,sha256=95tnNRnihrEVvG0yH-RDTQ8KoiBakDijjukclqxH5KE,718
35
35
  judgeval/scorers/utils.py,sha256=iSZONwK0HecxUPz-cMCyra_87DSCag1E8BdpF2a4_44,377
36
36
  judgeval/scorers/judgeval_scorers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  judgeval/scorers/judgeval_scorers/api_scorers/__init__.py,sha256=wrq7y9I30GZbwDXIrSh81KRO_-j7i-1DjwX5Hc3PScI,728
38
- judgeval/scorers/judgeval_scorers/api_scorers/answer_correctness.py,sha256=zJsU0VrUmRhY9qav48c6jTyDqUwI3JzhV9ajtlJCe0M,544
39
- judgeval/scorers/judgeval_scorers/api_scorers/answer_relevancy.py,sha256=UDfzTO9Fx0FA5o0wfD8kprrGA4eW-43Rn9Gc0BQtKgY,393
40
- judgeval/scorers/judgeval_scorers/api_scorers/faithfulness.py,sha256=ps51bTgQsD9xGYsk1v9bx0WxQMqywSllCE9_xlJkLd8,531
41
- judgeval/scorers/judgeval_scorers/api_scorers/instruction_adherence.py,sha256=aQzu-TiGqG74JDQ927evv5yGmnZw2AOolyHvlIhiUbI,683
42
- judgeval/scorers/judgeval_scorers/api_scorers/prompt_scorer.py,sha256=K4p-KYEcDoUyOXKmXMXx6Ao2Z8rHF_IHZwC-KUUAraY,9622
43
- judgeval/tracer/__init__.py,sha256=v0FxzFzOpRKoYzhJXeIlK9SkNdDrcV8hLMxOL-aaUcw,35016
38
+ judgeval/scorers/judgeval_scorers/api_scorers/answer_correctness.py,sha256=_qa1sOHUwJubBCfyx6lsE_4vZsUh65VoTZba1NSouis,558
39
+ judgeval/scorers/judgeval_scorers/api_scorers/answer_relevancy.py,sha256=ciiFBQQC4UDsk9qou9OiKbAR31s82eRUY1ZTt1gdM-0,407
40
+ judgeval/scorers/judgeval_scorers/api_scorers/faithfulness.py,sha256=lIJ3GgOI9tfbrC7voZMvlxXdK3X1bhdj2zNxqdaGIkM,545
41
+ judgeval/scorers/judgeval_scorers/api_scorers/instruction_adherence.py,sha256=bSwbpVNhpkpEeX3GtCJuyz5vFyY1gbyqYEfaBF2KTVY,697
42
+ judgeval/scorers/judgeval_scorers/api_scorers/prompt_scorer.py,sha256=djPfHC8NP9srwTAgp075kK_zz6Tbn2WFIh6jOZjqppQ,9688
43
+ judgeval/tracer/__init__.py,sha256=YLJklv1YfNDV61GiJw3PflLp_cajxAnXHojJVKitbz4,35074
44
44
  judgeval/tracer/constants.py,sha256=ae8tivAW97awJQxdRB9OMqX50wOLX3zqChT_AGkPBu0,85
45
45
  judgeval/tracer/keys.py,sha256=qXPoZSkEhVF-YYfQ9-zeDMVdr4GtpPf2W7MPJaN2AQo,2889
46
46
  judgeval/tracer/local_eval_queue.py,sha256=KZKvSSli7B-EVzdHa4-CmXUpv0uOjGLLRa2KTPg8lRc,7320
47
47
  judgeval/tracer/managers.py,sha256=h2ZHJ61_vf3cS-HlEUiodFzKDUuQWIhYC6n7pMVyM9c,6113
48
- judgeval/tracer/utils.py,sha256=Li40HXr-KDbPMaPWWIUVU1ym54wvTZFfb8iPO43Cg_g,584
48
+ judgeval/tracer/utils.py,sha256=3_8ZjjF4XgNyAu9LpThq5dVOcwdwI-E3vb-HRl_Px8c,594
49
49
  judgeval/tracer/exporters/__init__.py,sha256=lnZXfPGaQH844HAIuZCQqjqhnmZGA98kHY8Xp-Oi4Ws,1220
50
50
  judgeval/tracer/exporters/s3.py,sha256=N9gmw17cnR0VkfAQQkLsNj5BksgNRETThR5qYhWRjP4,4360
51
51
  judgeval/tracer/exporters/store.py,sha256=KQV3cyqteesByQjR-9VdPXT9OlUZ-6F08ogqj837_c0,1012
@@ -57,7 +57,7 @@ judgeval/trainer/__init__.py,sha256=h_DDVV7HFF7HUPAJFpt2d9wjqgnmEVcHxqZyB1k7pPQ,
57
57
  judgeval/trainer/config.py,sha256=sAAVBgeoFDJWYjGIgOvoQoiO0gtqNAOI6MHncwdN_mk,4292
58
58
  judgeval/trainer/console.py,sha256=PJ0rCnDwC7aoW-VsLDS96ZyMyagh-l9EOJKff1ATIpo,4342
59
59
  judgeval/trainer/trainable_model.py,sha256=T-Sioi_sXtfYlcu3lE0cd60PHs8DrYaZ-Kxb4h1nU04,8993
60
- judgeval/trainer/trainer.py,sha256=yVoYT35QqBKBySWUjqEDEP25Y8LDxskDpzHoVfFQd0U,16635
60
+ judgeval/trainer/trainer.py,sha256=FBhHq2YPooKADDCC_IEKex81L6a5quCmAMyl9mn3QLk,16675
61
61
  judgeval/utils/async_utils.py,sha256=AF1xdu8Ao5GyhFvfaLOaKJHn1RISyXZ4U70UZe9zfBA,1083
62
62
  judgeval/utils/decorators.py,sha256=rdqY1w0zNL6O6GU6Wdeo0-x5EgpFTEhU2vkgiWsRYdc,525
63
63
  judgeval/utils/file_utils.py,sha256=3LI1YCZwO5ogTgJreyOgRgDksey3natO2Td1PQqaPyY,3252
@@ -67,8 +67,8 @@ judgeval/utils/serialize.py,sha256=QXR-8Nj5rqOrI9zLx0oRLdk6DW6Bc7j8eyF4zQ7PLxA,6
67
67
  judgeval/utils/testing.py,sha256=4HO4UCZQgeB7wi-LQoKPjiAYMbj4PpeApAnxZdmI_8w,3392
68
68
  judgeval/utils/url.py,sha256=Shf0v3XcbaWpL0m1eGJEEO_z4TsQCnDB2Rl25OTUmiI,195
69
69
  judgeval/utils/version_check.py,sha256=kcF6SvB6GbVKI0Gv9QRVm-kvBn9_z-c3jmPORsXO3h0,1015
70
- judgeval-0.11.0.dist-info/METADATA,sha256=LOWnsUWz8sTq0EJTocdSVvrhXxz38ogUcF-xGr8gXJ0,8870
71
- judgeval-0.11.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
72
- judgeval-0.11.0.dist-info/entry_points.txt,sha256=-eoeD-oDLn4A7MSgeBS9Akwanf3_0r0cgEleBcIOjg0,46
73
- judgeval-0.11.0.dist-info/licenses/LICENSE.md,sha256=tKmCg7k5QOmxPK19XMfzim04QiQJPmgIm0pAn55IJwk,11352
74
- judgeval-0.11.0.dist-info/RECORD,,
70
+ judgeval-0.12.0.dist-info/METADATA,sha256=RVS9bm8KrWk-ifawDz1s9oDx_NY3zjGPkbknKKzpjeM,8870
71
+ judgeval-0.12.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
72
+ judgeval-0.12.0.dist-info/entry_points.txt,sha256=-eoeD-oDLn4A7MSgeBS9Akwanf3_0r0cgEleBcIOjg0,46
73
+ judgeval-0.12.0.dist-info/licenses/LICENSE.md,sha256=tKmCg7k5QOmxPK19XMfzim04QiQJPmgIm0pAn55IJwk,11352
74
+ judgeval-0.12.0.dist-info/RECORD,,