myagent-ai 1.15.74 → 1.15.75

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 (2) hide show
  1. package/package.json +1 -1
  2. package/start.js +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myagent-ai",
3
- "version": "1.15.74",
3
+ "version": "1.15.75",
4
4
  "description": "本地桌面端执行型AI助手 - Open Interpreter 风格 | Local Desktop Execution-Oriented AI Assistant",
5
5
  "main": "main.py",
6
6
  "bin": {
package/start.js CHANGED
@@ -408,15 +408,6 @@ function cmdUpdate(pkgDir) {
408
408
  process.exit(1);
409
409
  }
410
410
 
411
- // 3. 删除旧 venv 并重建
412
- const venvDir = getVenvDir();
413
- if (fs.existsSync(venvDir)) {
414
- console.log(" 删除旧虚拟环境...");
415
- fs.rmSync(venvDir, { recursive: true, force: true });
416
- }
417
- const venvPython = ensureVenv();
418
- installAllDeps(venvPython, newPkgDir);
419
-
420
411
  let ver = "";
421
412
  try { ver = JSON.parse(fs.readFileSync(path.join(newPkgDir, "package.json"), "utf8")).version || ""; } catch (_) {}
422
413
  markDepsInstalled(ver);