Skip to content

Commit

Permalink
feat: 提供 Agent 包管理后台基础接口 (closed #1683)
Browse files Browse the repository at this point in the history
  • Loading branch information
ping15 committed Jan 2, 2025
1 parent 63ed326 commit 7673178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/node_man/tools/gse_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def create_agent_tags(cls, tag_descriptions, project):

if tag_description in constants.BUILT_IN_TAG_DESCRIPTIONS + constants.BUILT_IN_TAG_NAMES:
# 内置标签,手动指定name和description
name: str = constants.TAG_DESCRIPTION__TAG_NAME[tag_description]
name: str = constants.TAG_DESCRIPTION__TAG_NAME.get(tag_description, tag_description)
tag_description = constants.TAG_NAME__TAG_DESCRIPTION.get(tag_description, tag_description)
else:
# 自定义标签,自动生成name
Expand Down

0 comments on commit 7673178

Please sign in to comment.