discovery-engine-api 0.2.140__tar.gz → 0.2.142__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.140
3
+ Version: 0.2.142
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
@@ -130,7 +130,7 @@ Runs take a few minutes. While waiting, the SDK logs progress automatically:
130
130
  Waiting for run abc123 to complete...
131
131
  Status: waiting (position 2 in queue) | Est. wait: ~8 min | Upgrade at disco.leap-labs.com/account for priority processing
132
132
  Status: processing (preprocessing — Processing data...) | Elapsed: 34.2s | ETA: ~6 min
133
- Status: processing (training — Modelling data...) | Elapsed: 98.7s | ETA: ~4 min
133
+ Status: processing (training — Modeling data...) | Elapsed: 98.7s | ETA: ~4 min
134
134
  Status: processing (interpreting — Extracting patterns...) | Elapsed: 284.1s | ETA: ~2 min
135
135
  Status: processing (reporting — Building report...) | Elapsed: 412.3s | ETA: ~1 min
136
136
  Run completed in 467.8s
@@ -93,7 +93,7 @@ Runs take a few minutes. While waiting, the SDK logs progress automatically:
93
93
  Waiting for run abc123 to complete...
94
94
  Status: waiting (position 2 in queue) | Est. wait: ~8 min | Upgrade at disco.leap-labs.com/account for priority processing
95
95
  Status: processing (preprocessing — Processing data...) | Elapsed: 34.2s | ETA: ~6 min
96
- Status: processing (training — Modelling data...) | Elapsed: 98.7s | ETA: ~4 min
96
+ Status: processing (training — Modeling data...) | Elapsed: 98.7s | ETA: ~4 min
97
97
  Status: processing (interpreting — Extracting patterns...) | Elapsed: 284.1s | ETA: ~2 min
98
98
  Status: processing (reporting — Building report...) | Elapsed: 412.3s | ETA: ~1 min
99
99
  Run completed in 467.8s
@@ -1,6 +1,6 @@
1
1
  """Disco Python SDK."""
2
2
 
3
- __version__ = "0.2.140"
3
+ __version__ = "0.2.142"
4
4
 
5
5
  from discovery.client import Engine
6
6
  from discovery.types import (
@@ -20,7 +20,7 @@ class DiscoInput(BaseModel):
20
20
  """Input for the Disco discovery tool."""
21
21
 
22
22
  file_url: str = Field(
23
- description="URL of the tabular dataset to analyse (CSV, Excel, Parquet, JSON, etc.)"
23
+ description="URL of the tabular dataset to analyze (CSV, Excel, Parquet, JSON, etc.)"
24
24
  )
25
25
  target_column: str = Field(
26
26
  description="The column to predict/explain — the outcome you want to understand"
@@ -21,7 +21,7 @@ class DiscoInput(BaseModel):
21
21
  """Input for the Disco discovery tool."""
22
22
 
23
23
  file_url: str = Field(
24
- description="URL of the tabular dataset to analyse (CSV, Excel, Parquet, JSON, etc.)"
24
+ description="URL of the tabular dataset to analyze (CSV, Excel, Parquet, JSON, etc.)"
25
25
  )
26
26
  target_column: str = Field(
27
27
  description="The column to predict/explain — the outcome you want to understand"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "discovery-engine-api"
3
- version = "0.2.140"
3
+ version = "0.2.142"
4
4
  description = "Python SDK for Disco API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"