discovery-engine-api 0.2.110__tar.gz → 0.2.112__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: discovery-engine-api
3
- Version: 0.2.110
3
+ Version: 0.2.112
4
4
  Summary: Python SDK for Disco API
5
5
  Project-URL: Homepage, https://www.leap-labs.com
6
6
  Project-URL: Documentation, https://disco.leap-labs.com/llms-full.txt
@@ -1,6 +1,6 @@
1
1
  """Disco Python SDK."""
2
2
 
3
- __version__ = "0.2.110"
3
+ __version__ = "0.2.112"
4
4
 
5
5
  from discovery.client import Engine
6
6
  from discovery.types import (
@@ -1160,7 +1160,7 @@ class Engine:
1160
1160
  target_mean=p.get("target_mean"),
1161
1161
  target_std=p.get("target_std"),
1162
1162
  description=p.get("description", ""),
1163
- novelty_explanation=p.get("novelty_explanation", ""),
1163
+ novelty_explanation=p.get("novelty_explanation"),
1164
1164
  citations=p.get("citations", []),
1165
1165
  p_value_raw=p.get("p_value_raw"),
1166
1166
  )
@@ -56,7 +56,7 @@ class Pattern:
56
56
  novelty_type: str # "novel" or "confirmatory"
57
57
  target_score: float
58
58
  description: str
59
- novelty_explanation: str
59
+ novelty_explanation: Optional[str] = None # populated by Disco novelty assessment
60
60
  target_class: Optional[str] = None
61
61
  target_mean: Optional[float] = None
62
62
  target_std: Optional[float] = None
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "discovery-engine-api"
3
- version = "0.2.110"
3
+ version = "0.2.112"
4
4
  description = "Python SDK for Disco API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"