mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
docs(readme): update project name to memory management kit
This commit is contained in:
parent
a4be28606b
commit
d9f332ece2
3 changed files with 6 additions and 5 deletions
|
|
@ -10,7 +10,7 @@
|
|||
</p>
|
||||
|
||||
<p align="center">
|
||||
<strong>ReMe (formerly MemoryScope): Memory Management Framework for Agents</strong><br>
|
||||
<strong>ReMe (formerly MemoryScope): Memory Management Kit for Agents</strong><br>
|
||||
<em>Remember Me, Refine Me.</em>
|
||||
</p>
|
||||
|
||||
|
|
@ -757,7 +757,7 @@ We believe the best memory systems come from collective wisdom. Contributions we
|
|||
|
||||
```bibtex
|
||||
@software{ReMe2025,
|
||||
title = {ReMe: Memory Management Framework for Agents},
|
||||
title = {ReMe: Memory Management Kit for Agents},
|
||||
author = {Li Yu, Jiaji Deng, Zouying Cao},
|
||||
url = {https://github.com/modelscope/ReMe},
|
||||
year = {2025}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ kernelspec:
|
|||
name: python3
|
||||
---
|
||||
|
||||
# ReMe: Memory Management Framework for Agents
|
||||
# ReMe: Memory Management Kit for Agents
|
||||
<em>Remember Me, Refine Me.</em>
|
||||
|
||||
<div class="flex justify-center space-x-3">
|
||||
|
|
@ -128,7 +128,7 @@ response = requests.post("http://localhost:8002/retrieve_task_memory", json={
|
|||
|
||||
```bibtex
|
||||
@software{ReMe2025,
|
||||
title = {ReMe: Memory Management Framework for Agents},
|
||||
title = {ReMe: Memory Management Kit for Agents},
|
||||
author = {Li Yu, Jiaji Deng, Zouying Cao},
|
||||
url = {https://github.com/modelscope/ReMe},
|
||||
year = {2025}
|
||||
|
|
|
|||
|
|
@ -24,7 +24,8 @@ class ParseToolCallResultOp(BaseAsyncOp):
|
|||
self.max_history_tool_call_cnt: int = max_history_tool_call_cnt
|
||||
self.evaluation_sleep_interval: float = evaluation_sleep_interval
|
||||
|
||||
def _format_tool_memories_summary(self, memory_list: List[ToolMemory], deleted_memory_ids: List[str]) -> str:
|
||||
@staticmethod
|
||||
def _format_tool_memories_summary(memory_list: List[ToolMemory], deleted_memory_ids: List[str]) -> str:
|
||||
"""Format tool memories update summary"""
|
||||
lines = []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue