drift-ml 0.2.8__tar.gz → 0.2.9__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.
Files changed (23) hide show
  1. {drift_ml-0.2.8 → drift_ml-0.2.9}/PKG-INFO +1 -1
  2. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/__init__.py +1 -1
  3. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/engine_launcher.py +6 -1
  4. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/PKG-INFO +1 -1
  5. {drift_ml-0.2.8 → drift_ml-0.2.9}/pyproject.toml +1 -1
  6. {drift_ml-0.2.8 → drift_ml-0.2.9}/LICENSE +0 -0
  7. {drift_ml-0.2.8 → drift_ml-0.2.9}/README.md +0 -0
  8. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/__main__.py +0 -0
  9. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/api.py +0 -0
  10. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/__init__.py +0 -0
  11. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/client.py +0 -0
  12. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/repl.py +0 -0
  13. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/session.py +0 -0
  14. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/__init__.py +0 -0
  15. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/base.py +0 -0
  16. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/gemini_cli.py +0 -0
  17. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/local_llm.py +0 -0
  18. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/SOURCES.txt +0 -0
  19. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/dependency_links.txt +0 -0
  20. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/entry_points.txt +0 -0
  21. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/requires.txt +0 -0
  22. {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/top_level.txt +0 -0
  23. {drift_ml-0.2.8 → drift_ml-0.2.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: drift-ml
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: drift — terminal-first, chat-based AutoML. Open source. No tokens. No auth.
5
5
  Project-URL: Homepage, https://github.com/lakshitsachdeva/intent2model
6
6
  Project-URL: Repository, https://github.com/lakshitsachdeva/intent2model
@@ -16,7 +16,7 @@ Library:
16
16
  result = d.train()
17
17
  """
18
18
 
19
- __version__ = "0.2.8"
19
+ __version__ = "0.2.9"
20
20
 
21
21
  from drift.api import Drift
22
22
  from drift.cli.client import BackendClient, BackendError
@@ -16,7 +16,7 @@ except ImportError:
16
16
  requests = None
17
17
 
18
18
  GITHUB_REPO = "lakshitsachdeva/intent2model" # Engine binaries (same repo)
19
- ENGINE_TAG = "v0.2.8" # Pinned — direct URL, no API, no rate limits
19
+ ENGINE_TAG = "v0.2.9" # Pinned — direct URL, no API, no rate limits
20
20
  ENGINE_PORT = os.environ.get("DRIFT_ENGINE_PORT", "8000")
21
21
  HEALTH_URL = f"http://127.0.0.1:{ENGINE_PORT}/health"
22
22
 
@@ -224,4 +224,9 @@ def ensure_engine() -> bool:
224
224
  err = stderr_file.read_text().strip() if stderr_file.exists() else ""
225
225
  if err:
226
226
  print(f"drift: Engine log: {err[-400:]}", file=sys.stderr)
227
+ if platform.system() == "Windows":
228
+ print("drift: On Windows, try running the backend manually:", file=sys.stderr)
229
+ print(" cd backend && python -m uvicorn main:app --host 0.0.0.0 --port 8000", file=sys.stderr)
230
+ print(" Create .env in project root with GEMINI_API_KEY=... for LLM planning.", file=sys.stderr)
231
+ print(" Then: set DRIFT_BACKEND_URL=http://localhost:8000", file=sys.stderr)
227
232
  return False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: drift-ml
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: drift — terminal-first, chat-based AutoML. Open source. No tokens. No auth.
5
5
  Project-URL: Homepage, https://github.com/lakshitsachdeva/intent2model
6
6
  Project-URL: Repository, https://github.com/lakshitsachdeva/intent2model
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "drift-ml"
7
- version = "0.2.8"
7
+ version = "0.2.9"
8
8
  description = "drift — terminal-first, chat-based AutoML. Open source. No tokens. No auth."
9
9
  requires-python = ">=3.10"
10
10
  dependencies = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes