Added the comparison function for different models and the comparison function for different versions#2758
Open
2h0u4n wants to merge 6 commits intoModelEngine-Group:developfrom
Open
Added the comparison function for different models and the comparison function for different versions#27582h0u4n wants to merge 6 commits intoModelEngine-Group:developfrom
2h0u4n wants to merge 6 commits intoModelEngine-Group:developfrom
Conversation
… function for different versions
Author
… function for different versions
… function for different versions
… function for different versions
WMC001
reviewed
Apr 9, 2026
| // Backend addresses | ||
| const HTTP_BACKEND = process.env.HTTP_BACKEND || "http://localhost:5010"; // config | ||
| const WS_BACKEND = process.env.WS_BACKEND || "ws://localhost:5014"; // runtime | ||
| const HTTP_BACKEND = process.env.HTTP_BACKEND || "http://127.0.0.1:5010"; // config |
WMC001
reviewed
Apr 9, 2026
|
|
||
| delta = chunk.choices[0].delta | ||
| new_token = getattr(delta, "content", None) | ||
| reasoning_content = getattr(delta, "reasoning_content", None) |
Contributor
There was a problem hiding this comment.
此处修改的原因是?如果是与新增功能无关的优化或bug修复建议单独提交PR
WMC001
reviewed
Apr 9, 2026
| # CONFIG_SERVICE_URL | ||
| if grep -q "^CONFIG_SERVICE_URL=" ../.env; then | ||
| sed -i.bak "s~^CONFIG_SERVICE_URL=.*~CONFIG_SERVICE_URL=http://localhost:5010~" ../.env | ||
| sed -i.bak "s~^CONFIG_SERVICE_URL=.*~CONFIG_SERVICE_URL=http://127.0.0.1:5010~" ../.env |
WMC001
reviewed
Apr 9, 2026
| allow_memory_search=allow_memory_search, | ||
| is_debug=agent_request.is_debug, | ||
| version_no_override=agent_request.version_no, | ||
| override_model_id=agent_request.model_id, |
Contributor
There was a problem hiding this comment.
version_no_override和override_model_id的命名风格不统一,建议使用后者
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.


增加了不同模型的对比功能和不同版本的对比功能。