Skip to content

Conversation

@CaralHsi
Copy link
Collaborator

Description

Summary: (summary)

Fix: #(issue)

Docs Issue/PR: (docs-issue-or-pr-link)

Reviewer: @(reviewer)

Checklist:

  • I have performed a self-review of my own code | 我已自行检查了自己的代码
  • I have commented my code in hard-to-understand areas | 我已在难以理解的地方对代码进行了注释
  • I have added tests that prove my fix is effective or that my feature works | 我已添加测试以证明我的修复有效或功能正常
  • I have created related documentation issue/PR in MemOS-Docs (if applicable) | 我已在 MemOS-Docs 中创建了相关的文档 issue/PR(如果适用)
  • I have linked the issue to this PR (if applicable) | 我已将 issue 链接到此 PR(如果适用)
  • I have mentioned the person who will review this PR | 我已提及将审查此 PR 的人

@CaralHsi CaralHsi changed the title Feat/examples feat: delete useless file; fix: chat model list bug Jan 19, 2026
@CaralHsi CaralHsi marked this pull request as ready for review January 19, 2026 14:01
@CaralHsi CaralHsi merged commit 7adbb92 into MemTensor:examples_update Jan 19, 2026
CaralHsi added a commit that referenced this pull request Jan 20, 2026
…ed demos (#903)

* fix bugs: try to fix bugs in _submit_web_logs

* fix bugs: try to address bugs

* fix bugs

* refactor: modify examples

* revise add operation and fix an unbelievable bug

* address the bug issues

* the doc file has a format problem which has been fixed in this commit

* add a range of new feats for the add operation

* address the incompatible issue of local scheduler

* feat(scheduler): optimize redis queue consumer group management

- Proactively ensure consumer groups exist in '_refresh_stream_keys' for newly discovered streams.
- Remove redundant consumer group checks in '_read_new_messages_batch' to improve read performance.
- Clean up 'seen_streams' cache when streams are deleted to ensure correct group recreation.
- This change reduces unnecessary Redis calls during high-frequency polling.

* fix(tests): resolve AttributeError in SimpleStructMemReader tests

- Import 'parse_json_result' from 'memos.mem_reader.utils' instead of accessing it as an instance attribute.
- Fixes 'AttributeError: 'SimpleStructMemReader' object has no attribute 'parse_json_result'' in 'test_parse_json_result_success' and 'test_parse_json_result_failure'.
- Remove incorrect mock assignment of 'parse_json_result' in 'test_process_chat_data'.

* fix(mem_reader): pass info dict to add_before_search for correct user_id usage

- Update 'add_before_search' signature in 'SimpleStructMemReader' to accept 'info' dict.
- Pass 'info' (containing 'user_id' and 'session_id') to 'self.searcher.search' instead of using empty strings.
- Add 'test_add_before_search' to 'TestSimpleStructMemReader' to verify the fix and ensure 'searcher.search' receives the correct 'info'.
- This ensures that memory searches are scoped to the correct user and session.

* refactor add_before_search from mem_reader to SingleCubeView

* address bugs

* fix: fix the qsize bug of task queue, and accept change from hotfix/scheduler

* fix: address some issues to run old scheduler example and kv cache example

* fix: address the issue of Top-level import of unavailable module 'torch'

* fix: resolve linting errors and make optional dependencies lazy loaded

- Fix ambiguous characters and commented-out code in examples/mem_scheduler/quick_start_examples.py
- Fix nested if statements in src/memos/mem_os/core.py
- Move torch and transformers imports to method scope in src/memos/llms/hf.py to support optional dependencies
- Update tests/llms/test_hf.py to patch transformers module directly

* refactor: revise the rewrite prompt to make it better

* refactor: update examples

* refactor: update examples for scheduler

* fix bugs: address the unsupported xautoclaim command when redis version larger than 6.2.0 via adding a new feature of manul auto claim with the combination of xpending + xclaim

* refactor: review settings

* refactor: adjust examples to make it run better for code debugging

* refactor: review slow add apis to get a better performance on Halumen

* fix bugs: address the issue when set user_redis_queue to false, the status_tracker is still using

* refactor: allow the code to run without rabbitmq

* refactor: create a _parse_pending_entry for redis queue

* refactor: add a try/catch for status_tracker

* fix: revise examples of textual memories to run normally

* feat: improve MemCube examples with View architecture (#859)

* feat: improve MemCube examples with View architecture

- Add load_cube.py: demonstrate loading MemCube and using SingleCubeView
- Add dump_cube.py: demonstrate persisting MemCube to disk
- Deprecate old examples: move load_from_folder.py, load_from_remote.py, load_lazily.py to _deprecated/
- Add _deprecated/README.md with migration guide
- All code in English with ruff check and format passed
- Use 80-char separator lines consistent with server_router_api.py style

* feat: improve MemCube examples with SingleCubeView

- dump_cube.py: export cube data via graph_store.export_graph()
- load_cube.py: import and display graph data
- Add example data in examples/data/mem_cube_tree/

---------

Co-authored-by: glin1993@outlook.com <>

* fix:examples update for core memories (#863)

* fix bugs: try to fix bugs in _submit_web_logs

* fix bugs: try to address bugs

* fix bugs

* refactor: modify examples

* revise add operation and fix an unbelievable bug

* address the bug issues

* the doc file has a format problem which has been fixed in this commit

* add a range of new feats for the add operation

* address the incompatible issue of local scheduler

* feat(scheduler): optimize redis queue consumer group management

- Proactively ensure consumer groups exist in '_refresh_stream_keys' for newly discovered streams.
- Remove redundant consumer group checks in '_read_new_messages_batch' to improve read performance.
- Clean up 'seen_streams' cache when streams are deleted to ensure correct group recreation.
- This change reduces unnecessary Redis calls during high-frequency polling.

* fix(tests): resolve AttributeError in SimpleStructMemReader tests

- Import 'parse_json_result' from 'memos.mem_reader.utils' instead of accessing it as an instance attribute.
- Fixes 'AttributeError: 'SimpleStructMemReader' object has no attribute 'parse_json_result'' in 'test_parse_json_result_success' and 'test_parse_json_result_failure'.
- Remove incorrect mock assignment of 'parse_json_result' in 'test_process_chat_data'.

* fix(mem_reader): pass info dict to add_before_search for correct user_id usage

- Update 'add_before_search' signature in 'SimpleStructMemReader' to accept 'info' dict.
- Pass 'info' (containing 'user_id' and 'session_id') to 'self.searcher.search' instead of using empty strings.
- Add 'test_add_before_search' to 'TestSimpleStructMemReader' to verify the fix and ensure 'searcher.search' receives the correct 'info'.
- This ensures that memory searches are scoped to the correct user and session.

* refactor add_before_search from mem_reader to SingleCubeView

* address bugs

* fix: fix the qsize bug of task queue, and accept change from hotfix/scheduler

* fix: address some issues to run old scheduler example and kv cache example

* fix: address the issue of Top-level import of unavailable module 'torch'

* fix: resolve linting errors and make optional dependencies lazy loaded

- Fix ambiguous characters and commented-out code in examples/mem_scheduler/quick_start_examples.py
- Fix nested if statements in src/memos/mem_os/core.py
- Move torch and transformers imports to method scope in src/memos/llms/hf.py to support optional dependencies
- Update tests/llms/test_hf.py to patch transformers module directly

* refactor: revise the rewrite prompt to make it better

* refactor: update examples

* refactor: update examples for scheduler

* fix bugs: address the unsupported xautoclaim command when redis version larger than 6.2.0 via adding a new feature of manul auto claim with the combination of xpending + xclaim

* refactor: review settings

* refactor: adjust examples to make it run better for code debugging

* refactor: review slow add apis to get a better performance on Halumen

* fix bugs: address the issue when set user_redis_queue to false, the status_tracker is still using

* refactor: allow the code to run without rabbitmq

* refactor: create a _parse_pending_entry for redis queue

* refactor: add a try/catch for status_tracker

* fix: revise examples of textual memories to run normally

* fix:address the issues in existing examples of core memories

* refactor: remove deprecated scheduler examples, and revise half examples

* refactor: address all issues in examples

* fix:feedback mute pref (#876)

* feedback mute pref

* mute pref feedback

---------

Co-authored-by: 黑布林 <11641432+heiheiyouyou@user.noreply.gitee.com>

* examples update from tree_textual_memories and preference_textual_mem… (#872)

examples update from tree_textual_memories and preference_textual_memories

* feat(examples): update basic modules examples and configs (#856)

* feat(examples): update basic modules examples and configs

* feat: update MCP examples and internet search

* docs: api reference

---------

Co-authored-by: nova <nova@novadeMacBook-Pro.local>
Co-authored-by: CaralHsi <caralhsi@gmail.com>

* Examples update (#887)

* neo4j_example.py

* neo4j_example.py

* neo4j_example.py

* Examples memfeedback (#885)

* update example of feedback

* update example of mem_feedback

---------

Co-authored-by: 周函数 <zhouhanshu@zhouhanshudeMacBook-Pro.local>

* fix:examples update for mem_reader (#866)

* fix:examples update for mem_reader

* update readme of the examples of mem_reader

---------

Co-authored-by: 周函数 <zhouhanshu@zhouhanshudeMacBook-Pro.local>

* update example of mem_chat (#892)

Co-authored-by: 周函数 <zhouhanshu@zhouhanshudeMacBook-Pro.local>

* fix: example config bug

* docs: Delete deprecated examples.

* docs: Adding clear instructions as comments for examples in basic_modules.

* fix: fixing bugs relevant to examples in basic_module.

* doc: Adding clear instructions as comments for examples in mem_scheduler.

* fix: Fix example bug caused by using the default SchedulerLocalQueue(without .show_task_status method).

* revert: "doc: Examples update and related minor bug fix" (#899)

Revert "doc: Examples update and related minor bug fix"

* doc: Examples update and related minor bug fix (#900)

Revert "revert: "doc: Examples update and related minor bug fix" (#899)"
The test failed because of other reasons than commits in this pr, so we revert this revert.

This reverts commit d0f3bab.

Co-authored-by: CaralHsi <caralhsi@gmail.com>

* feat: delete useless example (#904)

* fix: fix api examples and add search/chat examples. (#906)

* feat: delete useless file; fix: chat model list bug (#907)

* feat: delete useless example

* fix: chat_model_list bug

* feat: delete useless file

* feat: delete useless test file (#908)

* feat: delete useless example

* fix: chat_model_list bug

* feat: delete useless file

* feat: delete useless test

* feat: add mem_cube_2 because tests need them (#909)

* feat: delete useless example

* fix: chat_model_list bug

* feat: delete useless file

* feat: delete useless test

* feat: add mem_cube_2 because tests need them

* feat: add back mem_cube because tests use them (#910)

* feat: delete useless example

* fix: chat_model_list bug

* feat: delete useless file

* feat: delete useless test

* feat: add mem_cube_2 because tests need them

* feat: add mem_cube_2 because tests need them

---------

Co-authored-by: chentang <travistang@foxmail.com>
Co-authored-by: Zehao Lin <glin1993@outlook.com>
Co-authored-by: Dubberman <48425266+whipser030@users.noreply.github.com>
Co-authored-by: 黑布林 <11641432+heiheiyouyou@user.noreply.gitee.com>
Co-authored-by: Wenqiang Wei <46308778+endxxxx@users.noreply.github.com>
Co-authored-by: novaleolin <15062791135@163.com>
Co-authored-by: nova <nova@novadeMacBook-Pro.local>
Co-authored-by: caocuilong <39516215+caocuilong@users.noreply.github.com>
Co-authored-by: HanshuZhou <118414084+zhouhanshu@users.noreply.github.com>
Co-authored-by: 周函数 <zhouhanshu@zhouhanshudeMacBook-Pro.local>
Co-authored-by: Wenqiang Wei <wwq38556399@163.com>
Co-authored-by: bittergreen <bittergreen.wengqi@hotmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant