您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tool_labels_service.py 244B

12345678
  1. from core.tools.entities.tool_entities import ToolLabel
  2. from core.tools.entities.values import default_tool_labels
  3. class ToolLabelsService:
  4. @classmethod
  5. def list_tool_labels(cls) -> list[ToolLabel]:
  6. return default_tool_labels