From 12de0343b422a6e4430d62f393ceafc5f3cd0bac Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Fri, 7 Nov 2025 18:21:09 +0800 Subject: [PATCH] chore: remove legacy plugin files --- components.yaml | 4 ---- pkg/core/bootutils/files.py | 2 -- 2 files changed, 6 deletions(-) diff --git a/components.yaml b/components.yaml index 5d8e75d2..03b2d04e 100644 --- a/components.yaml +++ b/components.yaml @@ -16,7 +16,3 @@ spec: LLMAPIRequester: fromDirs: - path: pkg/provider/modelmgr/requesters/ - Plugin: - fromDirs: - - path: plugins/ - maxDepth: 2 diff --git a/pkg/core/bootutils/files.py b/pkg/core/bootutils/files.py index 3599e41b..07bb7779 100644 --- a/pkg/core/bootutils/files.py +++ b/pkg/core/bootutils/files.py @@ -5,7 +5,6 @@ import shutil required_files = { - 'plugins/__init__.py': 'templates/__init__.py', 'data/config.yaml': 'templates/config.yaml', } @@ -15,7 +14,6 @@ required_paths = [ 'data/metadata', 'data/logs', 'data/labels', - 'plugins', ]