discovery-engine-api 0.1.24__tar.gz → 0.1.34__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.24
3
+ Version: 0.1.34
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
@@ -185,11 +185,6 @@ The `run()` and `run_async()` methods accept the following parameters:
185
185
 
186
186
  ## Credits and Pricing
187
187
 
188
- - **Public datasets**: Free (0 credits required)
189
- - **Private datasets**:
190
- - Fast mode: 1 credit per MB
191
- - Deep mode: (number of columns × 0.1) credits per MB (minimum 3× fast mode cost)
192
-
193
188
  If you don't have enough credits for a private run, the SDK will raise an `httpx.HTTPStatusError` with an error message like:
194
189
  ```
195
190
  Insufficient credits. You need X credits but only have Y available.
@@ -154,11 +154,6 @@ The `run()` and `run_async()` methods accept the following parameters:
154
154
 
155
155
  ## Credits and Pricing
156
156
 
157
- - **Public datasets**: Free (0 credits required)
158
- - **Private datasets**:
159
- - Fast mode: 1 credit per MB
160
- - Deep mode: (number of columns × 0.1) credits per MB (minimum 3× fast mode cost)
161
-
162
157
  If you don't have enough credits for a private run, the SDK will raise an `httpx.HTTPStatusError` with an error message like:
163
158
  ```
164
159
  Insufficient credits. You need X credits but only have Y available.
@@ -1,6 +1,6 @@
1
1
  """Discovery Engine Python SDK."""
2
2
 
3
- __version__ = "0.1.24"
3
+ __version__ = "0.1.34"
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.24"
3
+ version = "0.1.34"
4
4
  description = "Python SDK for the Discovery Engine API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"