You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add .env.example-full and fix .env.example (MemTensor#1502)
## 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 #issue_number
## Type of change
Please delete options that are not relevant.
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] Refactor (does not change functionality, e.g. code style
improvements, linting)
- [ ] Documentation update
## 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
- [ ] Unit Test
- [ ] Test Script Or Test Steps (please provide)
- [ ] Pipeline Automated API Test (please provide)
## 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](https://github.com/MemTensor/MemOS-Docs) (if applicable) |
我已在 [MemOS-Docs](https://github.com/MemTensor/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
的人
## Reviewer Checklist
- [ ] closes #xxxx (Replace xxxx with the GitHub issue number)
- [ ] Made sure Checks passed
- [ ] Tests have been provided
MEM_READER_CHAT_CHUNK_TOKEN_SIZE=1600# tokens per chunk (default mode)
107
-
MEM_READER_CHAT_CHUNK_SESS_SIZE=10# sessions per chunk (default mode)
108
-
MEM_READER_CHAT_CHUNK_OVERLAP=2# overlap between chunks
109
-
110
-
## Scheduler (MemScheduler / API)
111
-
# Enable or disable the main switch for configuring the memory scheduler during MemOS class initialization
112
-
MOS_ENABLE_SCHEDULER=false
113
-
# Determine the number of most relevant memory entries that the scheduler retrieves or processes during runtime (such as reordering or updating working memory)
114
-
MOS_SCHEDULER_TOP_K=10
115
-
# The time interval (in seconds) for updating "Activation Memory" (usually referring to caching or short-term memory mechanisms)
116
-
MOS_SCHEDULER_ACT_MEM_UPDATE_INTERVAL=300
117
-
# The size of the context window considered by the scheduler when processing tasks (such as the number of recent messages or conversation rounds)
118
-
MOS_SCHEDULER_CONTEXT_WINDOW_SIZE=5
119
-
# The maximum number of working threads allowed in the scheduler thread pool for concurrent task execution
120
-
MOS_SCHEDULER_THREAD_POOL_MAX_WORKERS=10000
121
-
# The polling interval (in seconds) for the scheduler to consume new messages/tasks from the queue. The smaller the value, the faster the response, but the CPU usage may be higher
122
-
MOS_SCHEDULER_CONSUME_INTERVAL_SECONDS=0.01
123
-
# Whether to enable the parallel distribution function of the scheduler to improve the throughput of concurrent operations
124
-
MOS_SCHEDULER_ENABLE_PARALLEL_DISPATCH=true
125
-
# The specific switch to enable or disable the "Activate Memory" function in the scheduler logic
126
-
MOS_SCHEDULER_ENABLE_ACTIVATION_MEMORY=false
127
-
# Control whether the scheduler instance is actually started during server initialization. If false, the scheduler object may be created but its background loop will not be started
128
-
API_SCHEDULER_ON=true
129
-
# Specifically define the window size for API search operations in OptimizedScheduler. It is passed to the ScherderrAPIModule to control the scope of the search context
130
-
API_SEARCH_WINDOW_SIZE=5
131
-
# Specify how many rounds of previous conversations (history) to retrieve and consider during the 'hybrid search' (fast search+asynchronous fine search). This helps provide context aware search results
0 commit comments