mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-11-30 10:18:13 +08:00
17fd773a30
Co-authored-by: -LAN- <laipz8200@outlook.com>
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
|