drift-ml 0.1.10 → 0.1.11
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.
- package/bin/drift.js +1 -1
- package/package.json +1 -1
package/bin/drift.js
CHANGED
|
@@ -17,7 +17,7 @@ const http = require("http");
|
|
|
17
17
|
const isWindows = process.platform === "win32";
|
|
18
18
|
const ENGINE_PORT = process.env.DRIFT_ENGINE_PORT || "8000";
|
|
19
19
|
// Pinned tag: draft releases are invisible to /releases/latest.
|
|
20
|
-
const ENGINE_BASE_URL = process.env.DRIFT_ENGINE_BASE_URL || "https://github.com/lakshitsachdeva/intent2model/releases/download/v0.1.
|
|
20
|
+
const ENGINE_BASE_URL = process.env.DRIFT_ENGINE_BASE_URL || "https://github.com/lakshitsachdeva/intent2model/releases/download/v0.1.1";
|
|
21
21
|
const HEALTH_URL = `http://127.0.0.1:${ENGINE_PORT}/health`;
|
|
22
22
|
const HEALTH_TIMEOUT_MS = 2000;
|
|
23
23
|
const HEALTH_POLL_MS = 500;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drift-ml",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Drift — terminal-first, chat-based AutoML. Same engine as the web app. On first run: downloads and starts the engine locally (never exposes engine source).",
|
|
5
5
|
"bin": {
|
|
6
6
|
"drift": "./bin/drift.js"
|