From 0ca73bf85db3e1240f51fce18f5988112c23ac2f Mon Sep 17 00:00:00 2001 From: "jinli.yl" Date: Mon, 8 Sep 2025 12:26:10 +0800 Subject: [PATCH] docs(service): add service description for PersonalMemoryService and TaskMemoryService - Create service_description.md file to document ReMe services - Add descriptions for PersonalMemoryService and TaskMemoryService - Include import statements and environment variable requirements- Highlight key features and use cases for each service --- reme_ai/service/service_description.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 reme_ai/service/service_description.md diff --git a/reme_ai/service/service_description.md b/reme_ai/service/service_description.md new file mode 100644 index 00000000..e73a9810 --- /dev/null +++ b/reme_ai/service/service_description.md @@ -0,0 +1,4 @@ +| memory type | import | Desc | Note | +|----------------------------|-----------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------| +| ReMe.PersonalMemoryService | `from reme_ai.service.task_memory_service import TaskMemoryService` | ReMe’s personalized memory service (formerly MemoryScope) empowers you to generate, retrieve, and share customized memories. Leveraging advanced LLM, embedding, and vector store technologies, it builds a comprehensive memory system with intelligent, context- and time-aware memory management—seamlessly enabling you to configure and deploy powerful AI agents. | Need to configure environment variables: `FLOW_EMBEDDING_API_KEY`, `FLOW_EMBEDDING_BASE_URL`, `FLOW_LLM_API_KEY` and `FLOW_LLM_BASE_URL` | +| ReMe.TaskMemoryService | `from reme_ai.service.personal_memory_service import PersonalMemoryService` | ReMe’s task-oriented memory service helps you efficiently manage and schedule task-related memories, enhancing both the accuracy and efficiency of task execution. Powered by LLM capabilities, it supports flexible creation, retrieval, update, and deletion of memories across diverse task scenarios—enabling you to effortlessly build and scale robust agent-based task systems. | the same as `ReMe.PersonalMemoryService` |