From ca63f637995947d3e8e1fbe2c01c788523a1b930 Mon Sep 17 00:00:00 2001 From: simpleqt <89645338+simpleqt@users.noreply.github.com> Date: Wed, 9 Sep 2026 06:38:07 +0800 Subject: [PATCH] docs: fix a dead API-doc link and a doubled 'the' - get_memory_by_id linked ./get_memory_list.md, which doesn't exist in core/ (the closest page is search_memory.md) - evaluation overview comment doubled 'the' --- docs/en/open_source/evaluation/overview.md | 2 +- docs/en/open_source/open_source_api/core/get_memory_by_id.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/open_source/evaluation/overview.md b/docs/en/open_source/evaluation/overview.md index 34ae19901..8835462c6 100644 --- a/docs/en/open_source/evaluation/overview.md +++ b/docs/en/open_source/evaluation/overview.md @@ -85,6 +85,6 @@ get `questions_32k.csv` and `shared_contexts_32k.jsonl` from https://huggingface ```bash # Edit the configuration in evaluation/scripts/run_pm_eval.sh # Specify the model and memory backend you want to use (e.g., mem0, zep, etc.) -# If you want to use MIRIX, edit the the configuration in evaluation/scripts/personamem/config.yaml +# If you want to use MIRIX, edit the configuration in evaluation/scripts/personamem/config.yaml evaluation/scripts/run_pm_eval.sh ``` diff --git a/docs/en/open_source/open_source_api/core/get_memory_by_id.md b/docs/en/open_source/open_source_api/core/get_memory_by_id.md index c691e88f3..5e8434384 100644 --- a/docs/en/open_source/open_source_api/core/get_memory_by_id.md +++ b/docs/en/open_source/open_source_api/core/get_memory_by_id.md @@ -19,7 +19,7 @@ This interface uses the standard RESTful path parameter format: | Parameter | Location | Type | Required | Description | | :--- | :--- | :--- | :--- | :--- | -| **`memory_id`** | Path | `str` | Yes | The unique identifier (UUID) of the memory. You can obtain this ID from the results of the [**Get Memory List**](./get_memory_list.md) or [**Search**](./search_memory.md) interfaces. | +| **`memory_id`** | Path | `str` | Yes | The unique identifier (UUID) of the memory. You can obtain this ID from the results of the [**Memory Search**](./search_memory.md) or [**Search**](./search_memory.md) interfaces. | ## 3. How It Works (MemoryHandler)