mirror of
https://github.com/langgenius/dify.git
synced 2026-02-13 07:01:23 -05:00
- Added AttrMap and AttrKey classes for type-safe attribute storage. - Implemented AppAssetsAttrs and SkillAttrs for managing application and skill attributes. - Refactored Sandbox and initializers to utilize the new attribute management system, enhancing modularity and clarity in asset handling.
12 lines
256 B
Python
12 lines
256 B
Python
from .constants import SkillAttrs
|
|
from .entities import ToolArtifact, ToolDependency, ToolReference
|
|
from .skill_manager import SkillManager
|
|
|
|
__all__ = [
|
|
"SkillAttrs",
|
|
"SkillManager",
|
|
"ToolArtifact",
|
|
"ToolDependency",
|
|
"ToolReference",
|
|
]
|