mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 19:06:51 +08:00
9 lines
244 B
Python
9 lines
244 B
Python
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
|