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 +1 -1
- package/web/api_server.py +1 -1
package/package.json
CHANGED
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
|