mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
103 lines
3.6 KiB
Python
103 lines
3.6 KiB
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
import tempfile
|
|
from typing import Any, Dict, Optional
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.pydantic_v1 import root_validator
|
|
from langchain_core.tools import BaseTool
|
|
from langchain_core.utils import get_from_dict_or_env
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class AzureCogsText2SpeechTool(BaseTool):
|
|
"""Tool that queries the Azure Cognitive Services Text2Speech API.
|
|
|
|
In order to set this up, follow instructions at:
|
|
https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/get-started-text-to-speech?pivots=programming-language-python
|
|
"""
|
|
|
|
azure_cogs_key: str = "" #: :meta private:
|
|
azure_cogs_region: str = "" #: :meta private:
|
|
speech_language: str = "en-US" #: :meta private:
|
|
speech_config: Any #: :meta private:
|
|
|
|
name: str = "azure_cognitive_services_text2speech"
|
|
description: str = (
|
|
"A wrapper around Azure Cognitive Services Text2Speech. "
|
|
"Useful for when you need to convert text to speech. "
|
|
)
|
|
|
|
@root_validator(pre=True)
|
|
def validate_environment(cls, values: Dict) -> Dict:
|
|
"""Validate that api key and endpoint exists in environment."""
|
|
azure_cogs_key = get_from_dict_or_env(
|
|
values, "azure_cogs_key", "AZURE_COGS_KEY"
|
|
)
|
|
|
|
azure_cogs_region = get_from_dict_or_env(
|
|
values, "azure_cogs_region", "AZURE_COGS_REGION"
|
|
)
|
|
|
|
try:
|
|
import azure.cognitiveservices.speech as speechsdk
|
|
|
|
values["speech_config"] = speechsdk.SpeechConfig(
|
|
subscription=azure_cogs_key, region=azure_cogs_region
|
|
)
|
|
except ImportError:
|
|
raise ImportError(
|
|
"azure-cognitiveservices-speech is not installed. "
|
|
"Run `pip install azure-cognitiveservices-speech` to install."
|
|
)
|
|
|
|
return values
|
|
|
|
def _text2speech(self, text: str, speech_language: str) -> str:
|
|
try:
|
|
import azure.cognitiveservices.speech as speechsdk
|
|
except ImportError:
|
|
pass
|
|
|
|
self.speech_config.speech_synthesis_language = speech_language
|
|
speech_synthesizer = speechsdk.SpeechSynthesizer(
|
|
speech_config=self.speech_config, audio_config=None
|
|
)
|
|
result = speech_synthesizer.speak_text(text)
|
|
|
|
if result.reason == speechsdk.ResultReason.SynthesizingAudioCompleted:
|
|
stream = speechsdk.AudioDataStream(result)
|
|
with tempfile.NamedTemporaryFile(
|
|
mode="wb", suffix=".wav", delete=False
|
|
) as f:
|
|
stream.save_to_wav_file(f.name)
|
|
|
|
return f.name
|
|
|
|
elif result.reason == speechsdk.ResultReason.Canceled:
|
|
cancellation_details = result.cancellation_details
|
|
logger.debug(f"Speech synthesis canceled: {cancellation_details.reason}")
|
|
if cancellation_details.reason == speechsdk.CancellationReason.Error:
|
|
raise RuntimeError(
|
|
f"Speech synthesis error: {cancellation_details.error_details}"
|
|
)
|
|
|
|
return "Speech synthesis canceled."
|
|
|
|
else:
|
|
return f"Speech synthesis failed: {result.reason}"
|
|
|
|
def _run(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool."""
|
|
try:
|
|
speech_file = self._text2speech(query, self.speech_language)
|
|
return speech_file
|
|
except Exception as e:
|
|
raise RuntimeError(f"Error while running AzureCogsText2SpeechTool: {e}")
|