myagent-ai 1.22.1 → 1.22.2
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 +0 -1
package/package.json
CHANGED
package/web/api_server.py
CHANGED
|
@@ -220,7 +220,6 @@ class ApiServer:
|
|
|
220
220
|
# 任务列表内存存储(exec 模式,替代 task.md)
|
|
221
221
|
self._task_list_store: dict[str, list] = {} # session_id -> [{text, status}] (per-session, not per-agent)
|
|
222
222
|
# 模型链并发锁:防止并发请求互相覆盖 self.core.llm 配置
|
|
223
|
-
import asyncio
|
|
224
223
|
self._model_chain_lock = asyncio.Lock()
|
|
225
224
|
self._setup_routes()
|
|
226
225
|
self._runner: Optional[web.AppRunner] = None
|