livepilot 1.7.0 → 1.7.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/bin/livepilot.js +2 -2
- package/package.json +1 -1
package/bin/livepilot.js
CHANGED
|
@@ -70,12 +70,12 @@ function ensureVenv(systemPython, prefixArgs) {
|
|
|
70
70
|
// Check if venv already exists and has our deps
|
|
71
71
|
if (fs.existsSync(venvPy)) {
|
|
72
72
|
try {
|
|
73
|
-
execFileSync(venvPy, ["-c", "import fastmcp"], {
|
|
73
|
+
execFileSync(venvPy, ["-c", "import fastmcp; import midiutil; import pretty_midi"], {
|
|
74
74
|
encoding: "utf-8",
|
|
75
75
|
timeout: 10000,
|
|
76
76
|
stdio: "pipe",
|
|
77
77
|
});
|
|
78
|
-
return venvPy; // venv exists and
|
|
78
|
+
return venvPy; // venv exists and all deps importable
|
|
79
79
|
} catch {
|
|
80
80
|
// venv exists but deps missing — reinstall
|
|
81
81
|
console.error("LivePilot: reinstalling Python dependencies...");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "livepilot",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"mcpName": "io.github.dreamrec/livepilot",
|
|
5
5
|
"description": "AI copilot for Ableton Live 12 — 155 tools, device atlas (280+ devices), real-time audio analysis, generative algorithms, neo-Riemannian harmony, MIDI file I/O, and technique memory",
|
|
6
6
|
"author": "Pilot Studio",
|