谢俊男
eef0ee5f5c
feat(workflow tool node): Change the data output variable of the tool node to a string
2026-01-13 18:00:45 +08:00
谢俊男
c780d4be14
feat(workflow tool node): add a string type output variable
2026-01-13 17:41:03 +08:00
mengyonghao
e60bc37fbf
fix(workflow): set default empty value for custom variables in start node
2026-01-13 17:28:41 +08:00
谢俊男
9a0c403c51
feat(home page): place the version introduction in a static file
2026-01-13 16:41:26 +08:00
Eternity
7a5792ba01
Fix/workflow ( #92 )
...
* fix(workflow): use loose rendering for end-node variables
* fix(workflow): use int type for memory node config id
* fix(workflow): handle missing environment variable defaults
* fix(workflow): render jinja variables with actual values in non-strict mode
* fix(workflow): support reordering without a rerank model in knowledge base
* fix(workflow): fix typo in key value
2026-01-13 15:42:00 +08:00
mengyonghao
ada63d9f5c
fix(workflow): fix typo in key value
2026-01-13 15:40:22 +08:00
mengyonghao
8f114b0dfa
fix(workflow): support reordering without a rerank model in knowledge base
2026-01-13 15:34:57 +08:00
mengyonghao
9427584825
fix(workflow): render jinja variables with actual values in non-strict mode
2026-01-13 15:10:01 +08:00
mengyonghao
592c2ac217
fix(workflow): handle missing environment variable defaults
2026-01-13 15:09:06 +08:00
mengyonghao
dd7abc0d27
fix(workflow): use int type for memory node config id
2026-01-13 15:06:12 +08:00
mengyonghao
fe4a53563e
fix(workflow): use loose rendering for end-node variables
2026-01-13 15:04:44 +08:00
谢俊男
ab02f610e5
feat(workflow node): The execution records of the tool remove the foreign key that binds to the user, and directly store the user ID.
2026-01-13 14:59:12 +08:00
谢俊男
7741cffa03
feat(workflow node): built-in tools output modifications to adapt to workflow nodes
2026-01-13 11:36:09 +08:00
mengyonghao
c1fba39496
feat(workflow): add conversation_id parameter
2026-01-12 21:13:21 +08:00
mengyonghao
6a78ed7c8a
fix(workflow): fix default values in parameter extraction node and incorrect value retrieval in comparison operations
2026-01-12 20:32:17 +08:00
乐力齐
d477520b67
[fix]Return the "statement" attribute ( #76 )
...
* [fix]Return the "statement" attribute
* [fix]Trigger the forgetting cycle using the end_user_id
2026-01-12 18:47:40 +08:00
lixinyue11
17318d8205
Flx/develop config ( #77 )
...
* 修改BUG,读取接口的end_user_id获取不准确修复,statements检索内容为空需要给空列表
* 反思的默认部分检索替换为partial
* 反思的默认部分检索替换为partial
* 反思的默认部分检索替换为partial
2026-01-12 18:46:07 +08:00
谢俊男
b00049e94e
feat(home page and apps):
...
1. Add a version introduction to the homepage;
2. Query the app list. When the 'ids' parameter is provided, retrieve the specified applications by splitting them with commas, without pagination
2026-01-12 16:22:34 +08:00
乐力齐
9722601bae
Feature/episodic memory ( #70 )
...
* [feature]episodic memory
* [feature]episodic memory
* [changes]AI review and modify code
* [feature]Explicit memory
* [feature]Explicit memory
2026-01-12 12:27:33 +08:00
乐力齐
539821454a
Feature/episodic memory ( #64 )
...
* [feature]episodic memory
* [feature]episodic memory
* [changes]AI review and modify code
2026-01-10 16:35:32 +08:00
Eternity
c5dd09cf50
Feature/memory work ( #61 )
...
* refactor(conversation): separate service and repository layers for conversation module
- Split ConversationService and repository/UnitOfWork layers
- Service layer now only handles business logic and orchestration
- Repository layer handles all direct database operations
- UnitOfWork encapsulates transactional operations for messages
- Ensured all public methods have clear English docstrings with arguments, return values, and exceptions
* feat(memory): implement work memory endpoints and services
- Added API routes for conversation count, conversation list, messages, and detail.
- Integrated ConversationService for database queries and LLM-based summary generation.
* feat(memory): implement work memory endpoints and services
- Added API routes for conversation count, conversation list, messages, and detail.
- Integrated ConversationService for database queries and LLM-based summary generation.
* feat(workflow): fix issues causing workflow failures
if-else None value error
knowledge empty list rerank
end node output none node value
assigner input none value
* feat(memory): convert memory file creation time to timestamp and include title and first-line fields in file type
* fix(memory): fix serialization output and default value issues
* fix(workflow): fix issue with hybrid search logic in knowledge retrieval node
2026-01-08 18:48:29 +08:00
Ke Sun
7167c2002f
feat(implicit memory): upgrade pydantic v2 compatibility and confidence level handling
...
- Replace deprecated `.dict()` with `.model_dump(mode='json')` for pydantic v2 compatibility
- Convert confidence level from enum-based strings to numerical values (0-100 scale)
- Add confidence level mapping in controller (high: 85, medium: 50, low: 20)
- Update dimension analyzer to handle both string and numeric confidence inputs
- Refactor habit analyzer confidence level validation logic
- Remove ConfidenceLevel enum import and replace with integer-based approach
- Update memory config validators for numerical confidence level support
- Ensure all implicit memory schemas use model_dump for serialization
- Improve type consistency across memory analytics modules
2026-01-08 17:50:01 +08:00
乐力齐
a4af0f7432
Feature/actr forget ( #55 )
...
* [changes]Request to remove 'config_id' has been received.
* [add]Add the access history record table
* [changes]Request to remove 'config_id' has been received.
* [add]Add the access history record table
* [add]Obtain the record of the forgetting trend
* [changes]Based on the AI's suggestion, make the necessary modifications.
2026-01-08 15:15:13 +08:00
谢俊男
4ac010eda7
feat(agent tool): mcp and custom tool repair
2026-01-08 14:00:28 +08:00
lixiangcheng1
7165d53982
[fix]Clearly debug the model API key
2026-01-07 20:45:23 +08:00
谢俊男
25ce86ae93
feat(agent tool): mcp tool repair
2026-01-07 18:59:28 +08:00
Ke Sun
b3f8de3062
Feature/behavior analysis ( #53 )
...
* init behavior analysis
* init behavior analysis
* feat(implicit-memory): add implicit memory analytics system
2026-01-07 18:14:25 +08:00
Mark
28eccd6ce9
Merge pull request #50 from SuanmoSuanyangTechnology/fix/workflow
...
Fix/workflow
2026-01-07 18:04:53 +08:00
mengyonghao
569a211810
fix(workflow): remove environment variable fields from default workflow template
2026-01-07 17:53:53 +08:00
lixinyue11
bcb3d587a1
dev新增短期记忆功能 ( #47 )
...
* dev新增短期记忆功能
* dev新增短期记忆功能
* dev新增短期记忆功能
* dev新增短期记忆功能
* dev新增短期记忆功能
* dev新增短期记忆功能
* dev新增短期记忆功能
2026-01-07 16:36:11 +08:00
乐力齐
5fe8043ff8
Fix/actr config ( #49 )
...
* [fix]Remove the LLM
* [fix]Failed to restore access history record
2026-01-07 16:00:53 +08:00
Eternity
c52b360068
Feature/memory perceptual ( #48 )
...
* perf(workflow): pass JSON data to HTTP node as a string
* perf(prompt_opt): simplify log output
* feat(memory): add perceptual memory page API and related database schema
* perf(log): clean up API exception log output
* perf(memory): simplify perceptual memory timeline response by removing metadata
2026-01-07 16:00:22 +08:00
Mark
1a3b85c2fc
Merge pull request #41 from SuanmoSuanyangTechnology/feature/agent-tool_xjn
...
Feature/agent tool xjn
2026-01-06 20:30:55 +08:00
谢俊男
26947d85ae
feat(agent tool): agent tool bug fix
2026-01-06 20:05:18 +08:00
谢俊男
eb51e04a18
Merge branch 'refs/heads/develop' into feature/20260105_xjn
...
# Conflicts:
# api/app/services/app_chat_service.py
2026-01-06 19:46:36 +08:00
mengyonghao
a716c607d7
fix(workflow): optimize input_type validation for loop variables
2026-01-06 18:44:40 +08:00
乐力齐
3183f39535
Fix/Restore user information archive and one-sentence summary ( #37 )
...
* [fix]fix memory insights
* [fix]fix memory insights
* [fix]Based on the correction of the code by sourcery-ai
* [fix]Restore user information archive and one-sentence summary
2026-01-06 18:03:28 +08:00
谢俊男
492401f9b7
feat(agent tool): add agent tool plugin
2026-01-06 15:25:25 +08:00
乐力齐
a0f19ace92
Fix/memory insights ( #30 )
...
* [fix]fix memory insights
* [fix]fix memory insights
* [fix]Based on the correction of the code by sourcery-ai
2026-01-06 14:05:15 +08:00
谢俊男
962b74a68a
fix(workflow node): Workflow nodes and question classifier nodes - bug fixes
2026-01-06 12:09:55 +08:00
mengyonghao
411525687e
fix(workflow): temporarily ignore non-text fields in knowledge retrieval node
2026-01-06 11:38:03 +08:00
mengyonghao
049642ae48
fix(workflow): require end node only in main graph during runtime validation
2026-01-06 10:46:55 +08:00
mengyonghao
0300abc454
feat(workflow): fix concurrent update conflict of looping flag in parallel loop nodes
2026-01-06 10:35:43 +08:00
mengyonghao
71c5b54532
fix(workflow): throw exception when HTTP request node error handler is empty
2026-01-05 18:22:17 +08:00
mengyonghao
e1e77f70f9
feat(workflow): support context injection in LLM node
2026-01-05 17:37:45 +08:00
mengyonghao
d4a87187cb
fix(workflow): fix memory node message field not supporting variables
2026-01-05 17:32:20 +08:00
mengyonghao
29ccf956ec
pref(workflow): skip orphan node check in runtime execution
2026-01-05 17:30:28 +08:00
mengyonghao
35db38c2de
feat(workflow): support context injection in LLM node
2026-01-05 17:17:52 +08:00
Eternity
78207aca34
feat(workflow): add memory read and write node ( #24 )
2026-01-05 15:57:04 +08:00
乐力齐
1fc81d1347
Merge #105 into develop from feature/user-summary
...
[feature]用户记忆内容扩展
* feature/user-summary: (11 commits squashed)
- [ADD]Support graph search
- Merge #82 into develop from feature/20251219_myh
fix: correct function naming for memory retrieval
* feature/20251219_myh: (2 commits squashed)
- perf(workflow): adjust default template to be compatible with frontend format
- fix: correct function naming for memory retrieval
Signed-off-by: Eternity <1533512157@qq.com >
Reviewed-by: zhuwenhui5566@163.com <zhuwenhui5566@163.com >
Reviewed-by: aliyun6762716068 <accounts_68cb7c6b61f5dcc4200d6251@mail.teambition.com >
Merged-by: aliyun6762716068 <accounts_68cb7c6b61f5dcc4200d6251@mail.teambition.com >
CR-link: https://codeup.aliyun.com/redbearai/python/redbear-mem-open/change/82
- [fix]parsed excel document error:float division by zero
- [fix]parsed excel document error:float division by zero
- [fix]parsed excel document error:float division by zero
- [fix]parsed excel document error:float division by zero
- [changes]1.Fix the Neo4j alert;2.Separate the functions of "insight" and "summary"
- [feature]Develop user summary
- [feature]Developing Memory Insights
- [changes]Modify the data types and processing procedures of the configuration parameters
- [fix]fix
Signed-off-by: 乐力齐 <accounts_690c7b0af9007d7e338af636@mail.teambition.com >
Reviewed-by: aliyun6762716068 <accounts_68cb7c6b61f5dcc4200d6251@mail.teambition.com >
Merged-by: aliyun6762716068 <accounts_68cb7c6b61f5dcc4200d6251@mail.teambition.com >
CR-link: https://codeup.aliyun.com/redbearai/python/redbear-mem-open/change/105
2026-01-05 04:34:12 +00:00