discovery-engine-api 0.1.12__tar.gz → 0.1.26__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.1.12
3
+ Version: 0.1.26
4
4
  Summary: Python SDK for the Discovery Engine API
5
5
  Project-URL: Homepage, https://github.com/leap-laboratories/discovery
6
6
  Project-URL: Documentation, https://github.com/leap-laboratories/discovery
@@ -188,7 +188,7 @@ The `run()` and `run_async()` methods accept the following parameters:
188
188
  - **Public datasets**: Free (0 credits required)
189
189
  - **Private datasets**:
190
190
  - Fast mode: 1 credit per MB
191
- - Deep mode: 3 credits per MB
191
+ - Deep mode: (number of columns × 0.1) credits per MB (minimum 3× fast mode cost)
192
192
 
193
193
  If you don't have enough credits for a private run, the SDK will raise an `httpx.HTTPStatusError` with an error message like:
194
194
  ```
@@ -157,7 +157,7 @@ The `run()` and `run_async()` methods accept the following parameters:
157
157
  - **Public datasets**: Free (0 credits required)
158
158
  - **Private datasets**:
159
159
  - Fast mode: 1 credit per MB
160
- - Deep mode: 3 credits per MB
160
+ - Deep mode: (number of columns × 0.1) credits per MB (minimum 3× fast mode cost)
161
161
 
162
162
  If you don't have enough credits for a private run, the SDK will raise an `httpx.HTTPStatusError` with an error message like:
163
163
  ```
@@ -1,6 +1,6 @@
1
1
  """Discovery Engine Python SDK."""
2
2
 
3
- __version__ = "0.1.12"
3
+ __version__ = "0.1.26"
4
4
 
5
5
  from discovery.client import Engine
6
6
  from discovery.types import (
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "discovery-engine-api"
3
- version = "0.1.12"
3
+ version = "0.1.26"
4
4
  description = "Python SDK for the Discovery Engine API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"