myagent-ai 1.26.8 → 1.27.0

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.
@@ -0,0 +1,8 @@
1
+ import subprocess, sys
2
+ proc = subprocess.Popen([sys.executable, '-m', 'pip', 'install', '-r', 'requirements.txt'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True, bufsize=1)
3
+ for line in proc.stdout:
4
+ print(line, end='')
5
+ sys.stdout.flush()
6
+ proc.wait()
7
+ if proc.returncode != 0:
8
+ print(f'\nExit code: {proc.returncode}')
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # MyAgent - 本地桌面端执行型AI助手
2
2
 
3
- > 🤖 一个执行力极强、记忆力极强、运行稳定的本地桌面端AI助手。
3
+ > 🤖 一个执行力比较强、记忆力极强、运行稳定的本地桌面端AI助手。
4
4
  > 支持 Windows / macOS / Linux,系统托盘后台运行。
5
5
  > Open Interpreter 风格执行引擎 + 三层记忆系统 + 多Agent架构 + 多平台接入。
6
6