fix: The "tags" lack the key words related to the memory content. #999
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Please include a summary of the change, the problem it solves, the implementation approach, and relevant context. List any dependencies required for this change.
Related Issue (Required): Fixes #998
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
Test Script:

step1: Insert a line of code at line 741, to simulate the situation where a large model fails to be invoked: ./src/memos/mem_reader/read_multi_modal/file_content_parser.py
step2: Start the local service and run the following add request
curl --location --request POST 'http://127.0.0.1:8002/product/add'
--header 'Content-Type: application/json'
--data-raw '{
"user_id": "testfile_0202",
"mem_cube_id": "testfile_0202_cube",
"async_mode" : "sync",
"messages": [
{
"file": {
"file_data": "https://memos-file.oss-cn-shanghai.aliyuncs.com/algorithm/2026/01/13/0544a5cae26f4975b056b4738f34d7da.md",
"file_id": "0544a5cae26f4975b056b4738f34d7da",
"filename": "rick.txt"
},
"type": "file"
}
],
"info":{"source_type":"extreme_multimodal"}
}'
step3:Initiate a search request
curl --location --request POST 'http://127.0.0.1:8002/product/search'
--header 'Content-Type: application/json'
--data-raw '{
"user_id": "testfile_0202",
"readable_cube_ids": ["testfile_0202_cube"],
"query": "minddock",
"top_k":20
}'
step4: Check whether the tags of each item in the recall results contain any words related to the memory topic.

As shown in the example, in the case where the large model fails to access, the tags still retain the relevant words for proposing.
step5: Don't forget to restore the code after the test is completed.
Checklist
Reviewer Checklist