Files
urbanLifeline/dify/api/services/tools/tool_labels_service.py

9 lines
244 B
Python
Raw Normal View History

2025-12-01 17:21:38 +08:00
from core.tools.entities.tool_entities import ToolLabel
from core.tools.entities.values import default_tool_labels
class ToolLabelsService:
@classmethod
def list_tool_labels(cls) -> list[ToolLabel]:
return default_tool_labels