feat: support define tags in tool yaml (#4763)

This commit is contained in:
Yeuoly
2024-05-29 15:19:14 +08:00
committed by GitHub
parent b189faca52
commit 74f38eacda
82 changed files with 187 additions and 255 deletions

View File

@@ -1,4 +1,3 @@
from core.tools.entities.values import ToolLabelEnum
from core.tools.errors import ToolProviderCredentialValidationError
from core.tools.provider.builtin.stackexchange.tools.searchStackExQuestions import SearchStackExQuestionsTool
from core.tools.provider.builtin_tool_provider import BuiltinToolProviderController
@@ -24,8 +23,4 @@ class StackExchangeProvider(BuiltinToolProviderController):
)
except Exception as e:
raise ToolProviderCredentialValidationError(str(e))
def _get_tool_labels(self) -> list[ToolLabelEnum]:
return [
ToolLabelEnum.SEARCH, ToolLabelEnum.UTILITIES
]

View File

@@ -8,3 +8,6 @@ identity:
en_US: Access questions and answers from the Stack Exchange and its sub-sites.
zh_Hans: 从Stack Exchange和其子论坛获取问题和答案。
icon: icon.svg
tags:
- search
- utilities