vesper-wizard 2.3.0 → 2.3.1
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/package.json +1 -1
- package/scripts/postinstall.cjs +1 -1
- package/scripts/wizard.cjs +1 -1
- package/scripts/wizard.js +1 -1
- package/src/python/requirements.txt +12 -0
package/package.json
CHANGED
package/scripts/postinstall.cjs
CHANGED
|
@@ -43,7 +43,7 @@ const managedVenvDir = path.join(vesperDataDir, '.venv');
|
|
|
43
43
|
const managedPython = process.platform === 'win32'
|
|
44
44
|
? path.join(managedVenvDir, 'Scripts', 'python.exe')
|
|
45
45
|
: path.join(managedVenvDir, 'bin', 'python');
|
|
46
|
-
const requirementsPath = path.resolve(__dirname, '..', 'requirements.txt');
|
|
46
|
+
const requirementsPath = path.resolve(__dirname, '..', 'src', 'python', 'requirements.txt');
|
|
47
47
|
|
|
48
48
|
// 2. Create data directories
|
|
49
49
|
const dirs = [
|
package/scripts/wizard.cjs
CHANGED
|
@@ -62,7 +62,7 @@ const VESPER_API_URL = process.env.VESPER_API_URL || '';
|
|
|
62
62
|
const DEFAULT_VESPER_API_CANDIDATES = [
|
|
63
63
|
'http://localhost:3000',
|
|
64
64
|
'http://127.0.0.1:3000',
|
|
65
|
-
'https://
|
|
65
|
+
'https://getvesper.dev',
|
|
66
66
|
];
|
|
67
67
|
|
|
68
68
|
// ── Device Auth Helpers ──────────────────────────────────────
|
package/scripts/wizard.js
CHANGED
|
@@ -62,7 +62,7 @@ const VESPER_API_URL = process.env.VESPER_API_URL || '';
|
|
|
62
62
|
const DEFAULT_VESPER_API_CANDIDATES = [
|
|
63
63
|
'http://localhost:3000',
|
|
64
64
|
'http://127.0.0.1:3000',
|
|
65
|
-
'https://
|
|
65
|
+
'https://getvesper.dev',
|
|
66
66
|
];
|
|
67
67
|
|
|
68
68
|
// ── Device Auth Helpers ──────────────────────────────────────
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
polars==1.2.0
|
|
2
|
+
pandas==2.2.0
|
|
3
|
+
numpy==1.26.0
|
|
4
|
+
scikit-learn==1.4.0
|
|
5
|
+
# Optional source/download extras:
|
|
6
|
+
kaggle>=1.6.17
|
|
7
|
+
aiohttp>=3.9.0
|
|
8
|
+
aiofiles>=24.1.0
|
|
9
|
+
datasets>=2.20.0
|
|
10
|
+
webdataset>=0.2.86
|
|
11
|
+
# Optional for secure key storage (preferred over file fallback):
|
|
12
|
+
# keyring>=24.0.0
|