-
Notifications
You must be signed in to change notification settings - Fork 660
Release/v2.2.1 #3269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release/v2.2.1 #3269
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
e046431
add_greeting_fields_to_agent-develop
Zzzxxxxy 9d10fc2
feat(knowledge-base): add preserve_source_file and post-index source …
Lifeng-Chen 80bd159
test(data_process): stub knowledge_db, redis_service, and redis in te…
Lifeng-Chen 571ab07
test(data_process): shim cleanup_source for submit_process_forward_ch…
Lifeng-Chen 18d4c13
remove duplicate import
Zzzxxxxy d093dcb
fix: update unit tests for greeting_message and example_questions fields
Zzzxxxxy 19fe184
add init.sql to sonar.properites
Zzzxxxxy d7634ab
Chore:Add agent greeting message and example questions
Dallas98 96944a0
feat: fix conflict
Lifeng-Chen 2273fd8
Merge pull request #3189 from ModelEngine-Group/clf/lianyong_0604
Dallas98 119af70
♻️ Improvement: API to MCP conversion service supports configuring he…
YehongPan ff1b0d1
♻️ Improvement: Enhance processing of ES index names in memory banks.…
YehongPan 4ee7f58
feat: add active memory tools (StoreMemoryTool, SearchMemoryTool) (#3…
JasonW404 64a0c11
🐛 Bugfix: skill names and descriptions never load to context (#3205)
Jasonxia007 6933428
Feat: add selected count badges to tool/skill pool labels (#3206)
jeffwu-1999 3e4873d
🐛 Bugfix: Fix attribution error when tool calling error (#3208)
WMC001 9de2bd5
✨ Feat: Add support for Word document generation, preview, and downlo…
xuyaqist b4e6fe4
✨Feat:Enhance prompt optimization by integrating openjiuwen and fix r…
DongJiBao2001 29eabf8
Add CAS SSO integration and improve logout handling (#3072)
hhhhsc701 b45d64d
Merge branch 'main' into develop
Dallas98 a4d499d
🐛Bugfix: Remove unnecessary dependency exclusions and upgrade hugging…
DongJiBao2001 b6b6027
refactor: move current time from system prompt to user message for pr…
wuyuanfr 109a915
🐛 Bugfix: Fixed the issue of being unable to add MCP services via con…
YehongPan 81bb802
🐛 Bugfix: Fixed the issue where uploaded text files could not be pars…
YehongPan 4dd04b3
🐛 Bugfix: Fixed an issue where the MCP service could not be added cor…
YehongPan 8961efc
🐛 Bugfix: Fix incomplete display of tenant resources page after windo…
xuyaqist 2087080
Add agent marketplace repository and version pinning for sub-agents (…
Lifeng-Chen b9d2229
feat(agent): add verification configuration for agents and update rel…
Dallas98 fe9c5f0
🐛 Bugfix: Fix inability to select agent from agent space to edit (#3240)
xuyaqist 7be83d7
Update data agent and ME CAS integration documentation (#3242)
hhhhsc701 4a0e4ee
✨ Add several northbound apis (#3223)
Jasonxia007 b578855
refactor: simplify deployment script by removing unused variables and…
Dallas98 a2e05a9
🐛 Bugfix: Adjust agent detail UI layout to accommodate newly added "s…
xuyaqist 350f9f2
补充sql (#3248)
hhhhsc701 35fce96
🐛 Bugfix: Fixed an issue where the MCP service failed to start in a K…
YehongPan 2eb724f
🐛 Bugfix: knowledge_base_search_tool called with TypeError: argument …
Jasonxia007 8dde21f
🐛 Bugfix: Fixed an issue where the one-click rename function failed a…
YehongPan 09cc600
Bugfix: Exclude attachments from assistant when saving conversation h…
xuyaqist f5bbab1
Bump APP_VERSION from v2.2.0 to v2.2.1 (#3268)
YehongPan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| from adapters.exception import JiuwenSDKError, JiuwenSDKUnavailableError, NexentCapabilityError | ||
|
|
||
| try: | ||
| from adapters.jiuwen_sdk_adapter import JiuwenSDKAdapter | ||
| except ModuleNotFoundError: | ||
| JiuwenSDKAdapter = None # type: ignore[assignment, misc] | ||
|
|
||
| __all__ = [ | ||
| "JiuwenSDKError", | ||
| "JiuwenSDKUnavailableError", | ||
| "NexentCapabilityError", | ||
| "JiuwenSDKAdapter", | ||
| ] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| class JiuwenSDKError(Exception): | ||
| """Jiuwen SDK 调用失败的通用异常""" | ||
| pass | ||
|
|
||
|
|
||
| class JiuwenSDKUnavailableError(JiuwenSDKError): | ||
| """Jiuwen SDK 不可用(依赖缺失或未启用)""" | ||
| pass | ||
|
|
||
|
|
||
| class NexentCapabilityError(Exception): | ||
| """nexent 原生模式不支持该能力""" | ||
| pass |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
except ModuleNotFoundError过于宽泛。如果jiuwen_sdk_adapter模块存在但内部有语法错误或缺少其他依赖,ModuleNotFoundError不会捕获这些错误(它们会抛出ImportError或其他异常)。这会导致 JiuwenSDKAdapter 在开发环境中有错误时直接变成 None,而不是暴露真正的错误。建议只捕获特定的 ModuleNotFoundError(如except ModuleNotFoundError as e: if 'jiuwen' in str(e): ...)。