2024-03-28 03:19:02 +00:00
|
|
|
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] = [
|
2024-05-13 18:55:07 +00:00
|
|
|
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]
|
2024-03-28 03:19:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
return tools
|