mirror of
https://github.com/hwchase17/langchain
synced 2024-11-02 09:40:22 +00:00
893a924b90
Thank you for contributing to LangChain! - [ ] **PR title**: "core: move BaseChatLoader and BaseToolkit from community" - [ ] **PR message**: move BaseChatLoader and BaseToolkit --------- Co-authored-by: Bagatur <baskaryan@gmail.com>
34 lines
984 B
Python
34 lines
984 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
from typing import List
|
|
|
|
from langchain_core.tools import BaseTool, BaseToolkit
|
|
|
|
from langchain_community.tools.azure_cognitive_services import (
|
|
AzureCogsFormRecognizerTool,
|
|
AzureCogsImageAnalysisTool,
|
|
AzureCogsSpeech2TextTool,
|
|
AzureCogsText2SpeechTool,
|
|
AzureCogsTextAnalyticsHealthTool,
|
|
)
|
|
|
|
|
|
class AzureCognitiveServicesToolkit(BaseToolkit):
|
|
"""Toolkit for Azure Cognitive Services."""
|
|
|
|
def get_tools(self) -> List[BaseTool]:
|
|
"""Get the tools in the toolkit."""
|
|
|
|
tools: List[BaseTool] = [
|
|
AzureCogsFormRecognizerTool(),
|
|
AzureCogsSpeech2TextTool(),
|
|
AzureCogsText2SpeechTool(),
|
|
AzureCogsTextAnalyticsHealthTool(),
|
|
]
|
|
|
|
# TODO: Remove check once azure-ai-vision supports MacOS.
|
|
if sys.platform.startswith("linux") or sys.platform.startswith("win"):
|
|
tools.append(AzureCogsImageAnalysisTool())
|
|
return tools
|