mirror of
https://github.com/langgenius/dify.git
synced 2026-02-13 16:00:55 -05:00
- Replaced SkillArtifactSet with SkillBundle across various components, enhancing the organization of skill dependencies and references. - Updated SkillManager methods to load and save bundles instead of artifacts, improving clarity in asset management. - Refactored SkillCompiler to compile skills into bundles, streamlining the dependency resolution process. - Adjusted DifyCli and SandboxBashSession to utilize ToolDependencies, ensuring consistent handling of tool references. - Introduced AssetReferences for better management of file dependencies within skill bundles.
12 lines
264 B
Python
12 lines
264 B
Python
from .constants import SkillAttrs
|
|
from .entities import ToolDependencies, ToolDependency, ToolReference
|
|
from .skill_manager import SkillManager
|
|
|
|
__all__ = [
|
|
"SkillAttrs",
|
|
"SkillManager",
|
|
"ToolDependencies",
|
|
"ToolDependency",
|
|
"ToolReference",
|
|
]
|