myagent-ai 1.16.15 → 1.16.16

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myagent-ai",
3
- "version": "1.16.15",
3
+ "version": "1.16.16",
4
4
  "description": "本地桌面端执行型AI助手 - Open Interpreter 风格 | Local Desktop Execution-Oriented AI Assistant",
5
5
  "main": "main.py",
6
6
  "bin": {
package/web/api_server.py CHANGED
@@ -150,7 +150,7 @@ def _agent_color(name: str) -> str:
150
150
  class ApiServer:
151
151
  def __init__(self, app_core):
152
152
  self.core = app_core
153
- self.app = web.Application()
153
+ self.app = web.Application(client_max_size=50 * 1024 * 1024) # 50MB,支持大文件上传(PDF/Word等)
154
154
  self._exec_progress: dict = {}
155
155
  # Wrap the executor to track progress in real-time (deferred to initialize())
156
156
  self._executor_wrapped = False