arthur-common 2.1.55__py3-none-any.whl → 2.1.56__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.
Potentially problematic release.
This version of arthur-common might be problematic. Click here for more details.
arthur_common/models/shield.py
CHANGED
|
@@ -280,7 +280,10 @@ class TaskResponse(BaseModel):
|
|
|
280
280
|
updated_at: int = Field(
|
|
281
281
|
description="Time the task was created in unix milliseconds",
|
|
282
282
|
)
|
|
283
|
-
is_agentic: bool = Field(
|
|
283
|
+
is_agentic: Optional[bool] = Field(
|
|
284
|
+
description="Whether the task is agentic or not",
|
|
285
|
+
default=None,
|
|
286
|
+
)
|
|
284
287
|
rules: List[RuleResponse] = Field(description="List of all the rules for the task.")
|
|
285
288
|
metrics: Optional[List[MetricResponse]] = Field(
|
|
286
289
|
description="List of all the metrics for the task.",
|
|
@@ -619,7 +622,7 @@ class NewMetricRequest(BaseModel):
|
|
|
619
622
|
|
|
620
623
|
# If neither is set, default to use_llm_judge=True
|
|
621
624
|
if relevance_threshold is None and (
|
|
622
|
-
|
|
625
|
+
use_llm_judge is None or use_llm_judge == False
|
|
623
626
|
):
|
|
624
627
|
config_values["use_llm_judge"] = True
|
|
625
628
|
|
|
@@ -27,7 +27,7 @@ arthur_common/models/datasets.py,sha256=oO-HgZ_OZW-E9DlQYwxkw2T31jwZEqYaB3NvkbYA
|
|
|
27
27
|
arthur_common/models/metrics.py,sha256=vNgXaKNIgkLS2sjmUSsWIRLdbaP8zZUn8dLNWefrvho,11353
|
|
28
28
|
arthur_common/models/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
arthur_common/models/schema_definitions.py,sha256=4FSbL51RvOgeikNnVfCVSXmYDNzkyqtEKC2a6FjwRqI,16879
|
|
30
|
-
arthur_common/models/shield.py,sha256=
|
|
30
|
+
arthur_common/models/shield.py,sha256=T7mZtd1tl5Ecq2DwqYgGkmAobArkTN-aTWxBxIzzJpw,24303
|
|
31
31
|
arthur_common/models/task_job_specs.py,sha256=xYej0vtHE5zvBQ-ka9Rn4N1lQtR1XXgbGVzhzemiL64,3509
|
|
32
32
|
arthur_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
arthur_common/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -39,6 +39,6 @@ arthur_common/tools/functions.py,sha256=FWL4eWO5-vLp86WudT-MGUKvf2B8f02IdoXQFKd6
|
|
|
39
39
|
arthur_common/tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
40
|
arthur_common/tools/schema_inferer.py,sha256=Ur4CXGAkd6ZMSU0nMNrkOEElsBopHXq0lctTV8X92W8,5188
|
|
41
41
|
arthur_common/tools/time_utils.py,sha256=4gfiu9NXfvPZltiVNLSIQGylX6h2W0viNi9Kv4bKyfw,1410
|
|
42
|
-
arthur_common-2.1.
|
|
43
|
-
arthur_common-2.1.
|
|
44
|
-
arthur_common-2.1.
|
|
42
|
+
arthur_common-2.1.56.dist-info/METADATA,sha256=RCt5Wkd-AOQGbaADt5-XxHpzaSJPbluk_8NCBdHj0pg,1609
|
|
43
|
+
arthur_common-2.1.56.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
44
|
+
arthur_common-2.1.56.dist-info/RECORD,,
|
|
File without changes
|