Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/consts/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def _parse_otlp_headers(headers_str: str) -> dict:


# APP Version
APP_VERSION = "v2.2.0"
APP_VERSION = "v2.2.1"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

版本号从 v2.2.0 改为 v2.2.1,但 SQL 迁移文件也从 v2.2.0 重命名为 v2.2.1。请确认:1) 这些 SQL 文件的内容是否确实属于 v2.2.1 版本?2) 部署脚本是否按文件名顺序执行迁移?如果文件名决定了执行顺序,重命名可能影响已有环境的升级流程。



# Skill Creation Streaming Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default function AgentGenerateDetail({}) {
constraintPrompt: editedAgent.constraint_prompt || "",
fewShotsPrompt: editedAgent.few_shots_prompt || "",
provideRunSummary: editedAgent.provide_run_summary || false,
verificationEnabled: editedAgent.verification_config?.enabled ?? true,
verificationEnabled: editedAgent.verification_config?.enabled ?? false,
businessDescription: editedAgent.business_description || "",
businessLogicModelName:editedAgent.business_logic_model_name,
businessLogicModelId: editedAgent.business_logic_model_id,
Expand Down
Loading