myagent-ai 1.16.5 → 1.16.6

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/memory/manager.py CHANGED
@@ -536,7 +536,7 @@ class MemoryManager:
536
536
 
537
537
  where = " AND ".join(conditions)
538
538
  # 取最近的记忆候选进行比对
539
- sql = f"SELECT id, content, summary, created_at FROM memories WHERE {where} ORDER BY created_at DESC LIMIT 50"
539
+ sql = f"SELECT * FROM memories WHERE {where} ORDER BY created_at DESC LIMIT 50"
540
540
  rows = conn.execute(sql, params).fetchall()
541
541
 
542
542
  if not rows:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myagent-ai",
3
- "version": "1.16.5",
3
+ "version": "1.16.6",
4
4
  "description": "本地桌面端执行型AI助手 - Open Interpreter 风格 | Local Desktop Execution-Oriented AI Assistant",
5
5
  "main": "main.py",
6
6
  "bin": {