mirror of
https://github.com/langgenius/dify.git
synced 2025-07-07 01:00:48 +00:00
8 lines
243 B
Python
8 lines
243 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
|