Commit graph

51 commits

Author SHA1 Message Date
jinli.yl
77928ccb8d refactor(config): update default LLM model and optimize fs compactor logic 2026-02-24 22:00:09 +08:00
jinli.yl
e9757bccf6 refactor(core): restructure application initialization and component management 2026-02-24 19:45:47 +08:00
jinli.yl
a8604af78f feat(cli): enable vector search and improve chat history management 2026-02-15 13:29:46 +08:00
jinli.yl
cdda48aab4 feat(core): add async code execution and improve execution utilities 2026-02-14 21:27:04 +08:00
jinli.yl
f9a5ad7b11 refactor(fs): update FsContextChecker to inherit from BaseOp instead of BaseReact 2026-02-11 17:53:38 +08:00
jinli.yl
eae6c63d15 feat(cli): add ReMeCli class with interactive chat functionality 2026-02-11 17:23:15 +08:00
jinli.yl
679fafee1f chore(version): bump version to 0.3.0.0a4 and add logging 2026-02-10 23:15:30 +08:00
jinli.yl
e70d19a201 feat(fs): update model configurations and enhance summarizer functionality 2026-02-10 21:57:41 +08:00
jinli.yl
dfb402039c fix(memory): improve search relevance and configuration defaults 2026-02-10 16:24:43 +08:00
jinli.yl
c98050dc0d feat(config): switch to thinking model and enhance memory system 2026-02-10 03:12:19 +08:00
jinli.yl
0692023379 refactor(core): rename API base parameters and remove snippet character limit 2026-02-10 00:30:06 +08:00
jinli.yl
e47256269e fix(core): update version and simplify validation error message 2026-02-09 16:05:10 +08:00
jinli.yl
0c23a3ac66 feat(core): add memory storage and context checking capabilities 2026-02-08 19:24:53 +08:00
jinli.yl
1a35150648 feat(core): add config path parameter and enhance fs cli capabilities 2026-02-08 04:56:10 +08:00
jinli.yl
f0bc2da7b0 feat(chat): add FsCli chat agent with streaming capabilities 2026-02-08 03:05:11 +08:00
jinli.yl
55d61f1dc5 refactor(core): update registry naming and application configuration 2026-02-07 15:05:02 +08:00
jinli.yl
de28c8e243 refactor(core): rename memory_storage to memory_store and add base fs tool 2026-02-07 03:37:12 +08:00
jinliyl
f6ca7a733a
Merge branch 'main' into dev_0205 2026-02-06 17:47:44 +08:00
jinli.yl
1dd81f9c25 refactor(core): update config parsing and memory management system 2026-02-06 15:02:41 +08:00
jinliyl
90cd9ddea8
Merge pull request #100 from agentscope-ai/dev_0205
Dev 0205
2026-02-06 12:17:15 +08:00
jinli.yl
88674c52f9 fix(memory): resolve enum value access and tool processing issues 2026-02-06 12:16:28 +08:00
jinli.yl
c5438c52fc feat(memory): implement file watcher with delta and full sync strategies 2026-02-06 01:58:28 +08:00
jinli.yl
8c05f96fb6 feat(agent): implement memory targets filtering in base memory agent
- Add memory_targets parameter to filter memory target type mapping
- Modify memory_target_type_mapping property to use filtered targets when available
- Update REME class to collect memory targets from user, task, and tool names
- Pass collected memory targets to agent initialization
- Support both string and list inputs for user, task, and tool names
- Maintain
2026-02-04 17:51:28 +08:00
jinli.yl
93861942ca docs(memory): update personal memory retriever and summarizer documentation 2026-01-31 11:23:03 +08:00
jinli.yl
c7ba031cea feat(benchmark): add enable_thinking_params configuration option 2026-01-31 02:50:37 +08:00
jinli.yl
5a5e06a43d feat(memory): add draft memory functionality and update memory/profile management tools 2026-01-31 02:36:10 +08:00
jinli.yl
9a0d5058a2 refactor(memory): reorganize memory module imports and update personal retriever 2026-01-31 02:05:08 +08:00
jinli.yl
3680571c94 refactor(core): simplify component registration and improve application lifecycle management 2026-01-31 01:05:31 +08:00
方应
07905a0358 feat(memory): 添加用户配置文件增删功能并优化内存管理
- 新增 AddProfile 工具类用于添加用户配置文件
- 新增 DeleteProfile 工具类用于删除指定ID的配置文件
- 从 __init__.py 中移除已废弃的 UpdateProfileFilterOlder 工具
- 在 reme.py 中注释掉 AddProfile 和 DeleteProfile 的导入
- 从 reme.py 的工具列表中移除 UpdateProfileFilterOlder 相关代码
- 优化 ES 和 Qdrant 向量存储客户端初始化的日志记录
- 更新个人记忆检索器和摘要器的 YAML 配置文件格式
- 修复 personal_halumem_summarizer.py 中的参数传递格式问题
- 在 UpdateProfile 工具中添加按 memory_target 分组的功能
2026-01-30 17:03:58 +08:00
方应
74238ba9bd feat(memory): 添加个人记忆检索和总结功能
- 实现 PersonalHalumemRetriever 类用于向量搜索检索个人记忆
- 实现 PersonalHalumemSummarizer 类用于两阶段个人记忆处理
- 配置个人记忆检索和总结的系统提示词和用户消息模板
- 支持多阶段检索策略包括意图分解和深度追踪
- 实现记忆评估和原始来源追溯功能
- 添加记忆存储范围过滤和配置管理规则
2026-01-30 16:47:10 +08:00
方应
0f90926781 Merge remote-tracking branch 'origin/main'
# Conflicts:
#	reme/reme.py
2026-01-30 16:33:32 +08:00
方应
053c537845 feat(agent): 添加 Halumem 版本的记忆检索器和摘要器
- 添加 PersonalHalumemRetriever 和 PersonalHalumemSummarizer 类
- 在 memory 模块中注册新的检索器和摘要器
- 添加 UpdateProfileFilterOlder、DeleteProfile 和 AddProfile 工具
- 将 AddDraftAndRetrieveSimilarMemory 重命名为 AddAndRetrieveSimilarMemory
- 修改配置文件中的默认模型名称为 qwen-flash
- 在 benchmark 中添加 Halumem 评估支持和实时更新功能
- 降低 ProfileHandler 的最大容量限制并添加重复节点过滤逻辑
- 在 ReMe 中添加 halumem 版本的记忆代理配置
2026-01-30 16:30:18 +08:00
jinli.yl
6e72bcac2e refactor(memory): update memory registration and configuration handling 2026-01-29 14:18:53 +08:00
jinli.yl
ede831897c feat(memory): add tool memory agents and retrieval strategy 2026-01-29 11:22:13 +08:00
jinli.yl
cf62a73228 refactor(memory): restructure memory modules and add versioned personal memory agents 2026-01-29 11:21:50 +08:00
jinli.yl
12911e5148 fix(halumem): correct tmp directory path and update evaluation model default 2026-01-29 01:26:53 +08:00
jinli.yl
380cf5da15 fix(memory): handle MEMORY_NOT_FOUND case and update retrieval logic 2026-01-29 01:08:04 +08:00
jinli.yl
f841ccc4b9 feat(memory): enhance memory management with improved tool parameters and agent coordination 2026-01-29 00:12:03 +08:00
jinli.yl
3989a3c1c4 refactor(memory): update memory target mappings and profile handling 2026-01-28 20:38:34 +08:00
jinli.yl
c06fd78763 refactor(memory): refactor memory tools and handlers for improved structure 2026-01-28 20:10:38 +08:00
jinli.yl
c174aade76 feat(memory): extend memory system with procedural and tool memory support 2026-01-28 16:54:28 +08:00
jinli.yl
afa4eb9114 refactor(memory): update memory reference handling and agent orchestration 2026-01-28 01:47:49 +08:00
jinli.yl
2fffb847a0 refactor(memory): restructure memory tools and handlers 2026-01-28 01:18:06 +08:00
jinli.yl
22a6321661 refactor(memory): optimize vector store operations and enhance memory management 2026-01-27 01:57:50 +08:00
jinli.yl
c21b69da11 refactor(memory): update memory management and retrieval implementation 2026-01-27 01:26:17 +08:00
jinli.yl
e63a3fa632 feat(core): add simple request methods and improve memory management 2026-01-27 01:07:39 +08:00
jinli.yl
e77d228fae refactor(memory): update memory system with service context and vector store enhancements 2026-01-26 17:33:07 +08:00
jinli.yl
d3fa645832 refactor(agent): restructure memory agents and base react implementation 2026-01-26 16:30:58 +08:00
jinli.yl
035703029f feat(memory): restructure memory agent modules and enhance vector store operations 2026-01-23 23:53:54 +08:00
jinli.yl
9f8ad20c53 feat(memory): add ReAct agent and memory management tools 2026-01-23 15:47:02 +08:00