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.
- {drift_ml-0.2.8 → drift_ml-0.2.9}/PKG-INFO +1 -1
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/__init__.py +1 -1
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/engine_launcher.py +6 -1
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/PKG-INFO +1 -1
- {drift_ml-0.2.8 → drift_ml-0.2.9}/pyproject.toml +1 -1
- {drift_ml-0.2.8 → drift_ml-0.2.9}/LICENSE +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/README.md +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/__main__.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/api.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/__init__.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/client.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/repl.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/cli/session.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/__init__.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/base.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/gemini_cli.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift/llm_adapters/local_llm.py +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/SOURCES.txt +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/dependency_links.txt +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/entry_points.txt +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/requires.txt +0 -0
- {drift_ml-0.2.8 → drift_ml-0.2.9}/drift_ml.egg-info/top_level.txt +0 -0
- {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.
|
|
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 @@ except ImportError:
|
|
|
16
16
|
requests = None
|
|
17
17
|
|
|
18
18
|
GITHUB_REPO = "lakshitsachdeva/intent2model" # Engine binaries (same repo)
|
|
19
|
-
ENGINE_TAG = "v0.2.
|
|
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.
|
|
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
|
|
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
|
|
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
|