mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
25fbe356b4
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
from langchain_core.tools import BaseTool
|
|
|
|
from langchain_community.agent_toolkits.base import BaseToolkit
|
|
from langchain_community.tools.azure_ai_services import (
|
|
AzureAiServicesDocumentIntelligenceTool,
|
|
AzureAiServicesImageAnalysisTool,
|
|
AzureAiServicesSpeechToTextTool,
|
|
AzureAiServicesTextAnalyticsForHealthTool,
|
|
AzureAiServicesTextToSpeechTool,
|
|
)
|
|
|
|
|
|
class AzureAiServicesToolkit(BaseToolkit):
|
|
"""Toolkit for Azure AI Services."""
|
|
|
|
def get_tools(self) -> List[BaseTool]:
|
|
"""Get the tools in the toolkit."""
|
|
|
|
tools: List[BaseTool] = [
|
|
AzureAiServicesDocumentIntelligenceTool(), # type: ignore[call-arg]
|
|
AzureAiServicesImageAnalysisTool(), # type: ignore[call-arg]
|
|
AzureAiServicesSpeechToTextTool(), # type: ignore[call-arg]
|
|
AzureAiServicesTextToSpeechTool(), # type: ignore[call-arg]
|
|
AzureAiServicesTextAnalyticsForHealthTool(), # type: ignore[call-arg]
|
|
]
|
|
|
|
return tools
|