mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
25fbe356b4
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
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(), # type: ignore[call-arg]
|
|
AzureCogsSpeech2TextTool(), # type: ignore[call-arg]
|
|
AzureCogsText2SpeechTool(), # type: ignore[call-arg]
|
|
AzureCogsTextAnalyticsHealthTool(), # type: ignore[call-arg]
|
|
]
|
|
|
|
# TODO: Remove check once azure-ai-vision supports MacOS.
|
|
if sys.platform.startswith("linux") or sys.platform.startswith("win"):
|
|
tools.append(AzureCogsImageAnalysisTool()) # type: ignore[call-arg]
|
|
return tools
|