sample_id
stringlengths
21
196
text
stringlengths
105
936k
metadata
dict
category
stringclasses
6 values
langchain-ai/langchain:libs/langchain/langchain_classic/llms/human.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import HumanInputLLM # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"HumanInputLLM": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "HumanInputLLM", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/human.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/javelin_ai_gateway.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import JavelinAIGateway from langchain_community.llms.javelin_ai_gateway import Params # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "JavelinAIGateway": "langchain_community.llms", "Params": "langchain_community.llms.javelin_ai_gateway", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "JavelinAIGateway", "Params", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/javelin_ai_gateway.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/llamacpp.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import LlamaCpp # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"LlamaCpp": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "LlamaCpp", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/llamacpp.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/loading.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms.loading import load_llm, load_llm_from_config # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "load_llm_from_config": "langchain_community.llms.loading", "load_llm": "langchain_community.llms.loading", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "load_llm", "load_llm_from_config", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/loading.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/minimax.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import Minimax # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"Minimax": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "Minimax", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/minimax.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/mlflow.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import Mlflow # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"Mlflow": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "Mlflow", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/mlflow.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/mlflow_ai_gateway.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import MlflowAIGateway # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"MlflowAIGateway": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "MlflowAIGateway", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/mlflow_ai_gateway.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/mosaicml.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import MosaicML # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"MosaicML": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "MosaicML", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/mosaicml.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/nlpcloud.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import NLPCloud # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"NLPCloud": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "NLPCloud", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/nlpcloud.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/ollama.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import Ollama # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"Ollama": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "Ollama", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/ollama.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/opaqueprompts.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import OpaquePrompts # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"OpaquePrompts": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "OpaquePrompts", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/opaqueprompts.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/openai.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import AzureOpenAI, OpenAI, OpenAIChat from langchain_community.llms.openai import BaseOpenAI # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "BaseOpenAI": "langchain_community.llms.openai", "OpenAI": "langchain_community.llms", "AzureOpenAI": "langchain_community.llms", "OpenAIChat": "langchain_community.llms", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "AzureOpenAI", "BaseOpenAI", "OpenAI", "OpenAIChat", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/openai.py", "license": "MIT License", "lines": 24, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/pai_eas_endpoint.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import PaiEasEndpoint # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"PaiEasEndpoint": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "PaiEasEndpoint", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/pai_eas_endpoint.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/promptlayer_openai.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import PromptLayerOpenAI, PromptLayerOpenAIChat # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "PromptLayerOpenAI": "langchain_community.llms", "PromptLayerOpenAIChat": "langchain_community.llms", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "PromptLayerOpenAI", "PromptLayerOpenAIChat", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/promptlayer_openai.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/sagemaker_endpoint.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import SagemakerEndpoint from langchain_community.llms.sagemaker_endpoint import LLMContentHandler # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "SagemakerEndpoint": "langchain_community.llms", "LLMContentHandler": "langchain_community.llms.sagemaker_endpoint", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "LLMContentHandler", "SagemakerEndpoint", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/sagemaker_endpoint.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/self_hosted.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import SelfHostedPipeline # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"SelfHostedPipeline": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "SelfHostedPipeline", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/self_hosted.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/self_hosted_hugging_face.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import SelfHostedHuggingFaceLLM # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"SelfHostedHuggingFaceLLM": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "SelfHostedHuggingFaceLLM", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/self_hosted_hugging_face.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/tongyi.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import Tongyi # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"Tongyi": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "Tongyi", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/tongyi.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/utils.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms.utils import enforce_stop_tokens # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"enforce_stop_tokens": "langchain_community.llms.utils"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "enforce_stop_tokens", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/utils.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/vertexai.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import VertexAI, VertexAIModelGarden # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "VertexAI": "langchain_community.llms", "VertexAIModelGarden": "langchain_community.llms", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "VertexAI", "VertexAIModelGarden", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/vertexai.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/volcengine_maas.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import VolcEngineMaasLLM from langchain_community.llms.volcengine_maas import VolcEngineMaasBase # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "VolcEngineMaasBase": "langchain_community.llms.volcengine_maas", "VolcEngineMaasLLM": "langchain_community.llms", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "VolcEngineMaasBase", "VolcEngineMaasLLM", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/volcengine_maas.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/xinference.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import Xinference # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"Xinference": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "Xinference", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/xinference.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/llms/yandex.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.llms import YandexGPT # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"YandexGPT": "langchain_community.llms"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "YandexGPT", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/llms/yandex.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/astradb.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import AstraDBChatMessageHistory # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "AstraDBChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "AstraDBChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/astradb.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/cassandra.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import CassandraChatMessageHistory # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "CassandraChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "CassandraChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/cassandra.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/elasticsearch.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import ( ElasticsearchChatMessageHistory, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "ElasticsearchChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ElasticsearchChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/elasticsearch.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/mongodb.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import MongoDBChatMessageHistory # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "MongoDBChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "MongoDBChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/mongodb.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/redis.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import RedisChatMessageHistory # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "RedisChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "RedisChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/redis.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/rocksetdb.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import RocksetChatMessageHistory # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "RocksetChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "RocksetChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/rocksetdb.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/singlestoredb.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import ( SingleStoreDBChatMessageHistory, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "SingleStoreDBChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "SingleStoreDBChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/singlestoredb.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/upstash_redis.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import ( UpstashRedisChatMessageHistory, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "UpstashRedisChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "UpstashRedisChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/upstash_redis.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/xata.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import XataChatMessageHistory # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "XataChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "XataChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/xata.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/chat_message_histories/zep.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.chat_message_histories import ZepChatMessageHistory # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "ZepChatMessageHistory": "langchain_community.chat_message_histories", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ZepChatMessageHistory", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/chat_message_histories/zep.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/memory/vectorstore.py
"""Class for a VectorStore-backed memory object.""" from collections.abc import Sequence from typing import Any from langchain_core._api import deprecated from langchain_core.documents import Document from langchain_core.vectorstores import VectorStoreRetriever from pydantic import Field from langchain_classic.base_memory import BaseMemory from langchain_classic.memory.utils import get_prompt_input_key @deprecated( since="0.3.1", removal="1.0.0", message=( "Please see the migration guide at: " "https://python.langchain.com/docs/versions/migrating_memory/" ), ) class VectorStoreRetrieverMemory(BaseMemory): """Vector Store Retriever Memory. Store the conversation history in a vector store and retrieves the relevant parts of past conversation based on the input. """ retriever: VectorStoreRetriever = Field(exclude=True) """VectorStoreRetriever object to connect to.""" memory_key: str = "history" """Key name to locate the memories in the result of load_memory_variables.""" input_key: str | None = None """Key name to index the inputs to load_memory_variables.""" return_docs: bool = False """Whether or not to return the result of querying the database directly.""" exclude_input_keys: Sequence[str] = Field(default_factory=tuple) """Input keys to exclude in addition to memory key when constructing the document""" @property def memory_variables(self) -> list[str]: """The list of keys emitted from the load_memory_variables method.""" return [self.memory_key] def _get_prompt_input_key(self, inputs: dict[str, Any]) -> str: """Get the input key for the prompt.""" if self.input_key is None: return get_prompt_input_key(inputs, self.memory_variables) return self.input_key def _documents_to_memory_variables( self, docs: list[Document], ) -> dict[str, list[Document] | str]: result: list[Document] | str if not self.return_docs: result = "\n".join([doc.page_content for doc in docs]) else: result = docs return {self.memory_key: result} def load_memory_variables( self, inputs: dict[str, Any], ) -> dict[str, list[Document] | str]: """Return history buffer.""" input_key = self._get_prompt_input_key(inputs) query = inputs[input_key] docs = self.retriever.invoke(query) return self._documents_to_memory_variables(docs) async def aload_memory_variables( self, inputs: dict[str, Any], ) -> dict[str, list[Document] | str]: """Return history buffer.""" input_key = self._get_prompt_input_key(inputs) query = inputs[input_key] docs = await self.retriever.ainvoke(query) return self._documents_to_memory_variables(docs) def _form_documents( self, inputs: dict[str, Any], outputs: dict[str, str], ) -> list[Document]: """Format context from this conversation to buffer.""" # Each document should only include the current turn, not the chat history exclude = set(self.exclude_input_keys) exclude.add(self.memory_key) filtered_inputs = {k: v for k, v in inputs.items() if k not in exclude} texts = [ f"{k}: {v}" for k, v in list(filtered_inputs.items()) + list(outputs.items()) ] page_content = "\n".join(texts) return [Document(page_content=page_content)] def save_context(self, inputs: dict[str, Any], outputs: dict[str, str]) -> None: """Save context from this conversation to buffer.""" documents = self._form_documents(inputs, outputs) self.retriever.add_documents(documents) async def asave_context( self, inputs: dict[str, Any], outputs: dict[str, str], ) -> None: """Save context from this conversation to buffer.""" documents = self._form_documents(inputs, outputs) await self.retriever.aadd_documents(documents) def clear(self) -> None: """Nothing to clear.""" async def aclear(self) -> None: """Nothing to clear."""
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/memory/vectorstore.py", "license": "MIT License", "lines": 101, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/output_parsers/ernie_functions.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.output_parsers.ernie_functions import ( JsonKeyOutputFunctionsParser, JsonOutputFunctionsParser, OutputFunctionsParser, PydanticAttrOutputFunctionsParser, PydanticOutputFunctionsParser, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "JsonKeyOutputFunctionsParser": ( "langchain_community.output_parsers.ernie_functions" ), "JsonOutputFunctionsParser": "langchain_community.output_parsers.ernie_functions", "OutputFunctionsParser": "langchain_community.output_parsers.ernie_functions", "PydanticAttrOutputFunctionsParser": ( "langchain_community.output_parsers.ernie_functions" ), "PydanticOutputFunctionsParser": ( "langchain_community.output_parsers.ernie_functions" ), } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "JsonKeyOutputFunctionsParser", "JsonOutputFunctionsParser", "OutputFunctionsParser", "PydanticAttrOutputFunctionsParser", "PydanticOutputFunctionsParser", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/output_parsers/ernie_functions.py", "license": "MIT License", "lines": 37, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/output_parsers/loading.py
from langchain_classic.output_parsers.regex import RegexParser def load_output_parser(config: dict) -> dict: """Load an output parser. Args: config: config dict Returns: config dict with output parser loaded """ if "output_parsers" in config and config["output_parsers"] is not None: _config = config["output_parsers"] output_parser_type = _config["_type"] if output_parser_type == "regex_parser": output_parser = RegexParser(**_config) else: msg = f"Unsupported output parser {output_parser_type}" raise ValueError(msg) config["output_parsers"] = output_parser return config
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/output_parsers/loading.py", "license": "MIT License", "lines": 18, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/python.py
"""For backwards compatibility.""" from typing import Any from langchain_classic._api import create_importer # Code has been removed from the community package as well. # We'll proxy to community package, which will raise an appropriate exception, # but we'll not include this in __all__, so it won't be listed as importable. _importer = create_importer( __package__, deprecated_lookups={"PythonREPL": "langchain_community.utilities.python"}, ) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _importer(name)
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/python.py", "license": "MIT License", "lines": 13, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/requests.py
"""DEPRECATED: Kept for backwards compatibility.""" from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.utilities import ( Requests, RequestsWrapper, TextRequestsWrapper, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "Requests": "langchain_community.utilities", "RequestsWrapper": "langchain_community.utilities", "TextRequestsWrapper": "langchain_community.utilities", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "Requests", "RequestsWrapper", "TextRequestsWrapper", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/requests.py", "license": "MIT License", "lines": 26, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/arcee.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import ArceeRetriever # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"ArceeRetriever": "langchain_community.retrievers"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ArceeRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/arcee.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/arxiv.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import ArxivRetriever # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"ArxivRetriever": "langchain_community.retrievers"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ArxivRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/arxiv.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/bedrock.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import AmazonKnowledgeBasesRetriever from langchain_community.retrievers.bedrock import ( RetrievalConfig, VectorSearchConfig, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "VectorSearchConfig": "langchain_community.retrievers.bedrock", "RetrievalConfig": "langchain_community.retrievers.bedrock", "AmazonKnowledgeBasesRetriever": "langchain_community.retrievers", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "AmazonKnowledgeBasesRetriever", "RetrievalConfig", "VectorSearchConfig", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/bedrock.py", "license": "MIT License", "lines": 25, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/milvus.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import MilvusRetriever from langchain_community.retrievers.milvus import MilvusRetreiver # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "MilvusRetriever": "langchain_community.retrievers", "MilvusRetreiver": "langchain_community.retrievers.milvus", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "MilvusRetreiver", "MilvusRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/milvus.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/outline.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import OutlineRetriever # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"OutlineRetriever": "langchain_community.retrievers"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "OutlineRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/outline.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/pubmed.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import PubMedRetriever # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"PubMedRetriever": "langchain_community.retrievers"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "PubMedRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/pubmed.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/astradb.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.astradb import AstraDBTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "AstraDBTranslator": "langchain_community.query_constructors.astradb", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["AstraDBTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/astradb.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/base.py
"""Retriever that generates and executes structured queries over its own data source.""" import logging from collections.abc import Sequence from typing import Any from langchain_core.callbacks.manager import ( AsyncCallbackManagerForRetrieverRun, CallbackManagerForRetrieverRun, ) from langchain_core.documents import Document from langchain_core.language_models import BaseLanguageModel from langchain_core.retrievers import BaseRetriever from langchain_core.runnables import Runnable from langchain_core.structured_query import StructuredQuery, Visitor from langchain_core.vectorstores import VectorStore from pydantic import ConfigDict, Field, model_validator from typing_extensions import override from langchain_classic.chains.query_constructor.base import ( load_query_constructor_runnable, ) from langchain_classic.chains.query_constructor.schema import AttributeInfo logger = logging.getLogger(__name__) QUERY_CONSTRUCTOR_RUN_NAME = "query_constructor" def _get_builtin_translator(vectorstore: VectorStore) -> Visitor: """Get the translator class corresponding to the vector store class.""" try: import langchain_community # noqa: F401 except ImportError as err: msg = ( "The langchain-community package must be installed to use this feature." " Please install it using `pip install langchain-community`." ) raise ImportError(msg) from err from langchain_community.query_constructors.astradb import AstraDBTranslator from langchain_community.query_constructors.chroma import ChromaTranslator from langchain_community.query_constructors.dashvector import DashvectorTranslator from langchain_community.query_constructors.databricks_vector_search import ( DatabricksVectorSearchTranslator, ) from langchain_community.query_constructors.deeplake import DeepLakeTranslator from langchain_community.query_constructors.dingo import DingoDBTranslator from langchain_community.query_constructors.elasticsearch import ( ElasticsearchTranslator, ) from langchain_community.query_constructors.milvus import MilvusTranslator from langchain_community.query_constructors.mongodb_atlas import ( MongoDBAtlasTranslator, ) from langchain_community.query_constructors.myscale import MyScaleTranslator from langchain_community.query_constructors.neo4j import Neo4jTranslator from langchain_community.query_constructors.opensearch import OpenSearchTranslator from langchain_community.query_constructors.pgvector import PGVectorTranslator from langchain_community.query_constructors.pinecone import PineconeTranslator from langchain_community.query_constructors.qdrant import QdrantTranslator from langchain_community.query_constructors.redis import RedisTranslator from langchain_community.query_constructors.supabase import SupabaseVectorTranslator from langchain_community.query_constructors.tencentvectordb import ( TencentVectorDBTranslator, ) from langchain_community.query_constructors.timescalevector import ( TimescaleVectorTranslator, ) from langchain_community.query_constructors.vectara import VectaraTranslator from langchain_community.query_constructors.weaviate import WeaviateTranslator from langchain_community.vectorstores import ( AstraDB, DashVector, DatabricksVectorSearch, DeepLake, Dingo, Milvus, MyScale, Neo4jVector, OpenSearchVectorSearch, PGVector, Qdrant, Redis, SupabaseVectorStore, TencentVectorDB, TimescaleVector, Vectara, Weaviate, ) from langchain_community.vectorstores import ( Chroma as CommunityChroma, ) from langchain_community.vectorstores import ( ElasticsearchStore as ElasticsearchStoreCommunity, ) from langchain_community.vectorstores import ( MongoDBAtlasVectorSearch as CommunityMongoDBAtlasVectorSearch, ) from langchain_community.vectorstores import ( Pinecone as CommunityPinecone, ) builtin_translators: dict[type[VectorStore], type[Visitor]] = { AstraDB: AstraDBTranslator, PGVector: PGVectorTranslator, CommunityPinecone: PineconeTranslator, CommunityChroma: ChromaTranslator, DashVector: DashvectorTranslator, Dingo: DingoDBTranslator, Weaviate: WeaviateTranslator, Vectara: VectaraTranslator, Qdrant: QdrantTranslator, MyScale: MyScaleTranslator, DeepLake: DeepLakeTranslator, ElasticsearchStoreCommunity: ElasticsearchTranslator, Milvus: MilvusTranslator, SupabaseVectorStore: SupabaseVectorTranslator, TimescaleVector: TimescaleVectorTranslator, OpenSearchVectorSearch: OpenSearchTranslator, CommunityMongoDBAtlasVectorSearch: MongoDBAtlasTranslator, Neo4jVector: Neo4jTranslator, } if isinstance(vectorstore, DatabricksVectorSearch): return DatabricksVectorSearchTranslator() if isinstance(vectorstore, MyScale): return MyScaleTranslator(metadata_key=vectorstore.metadata_column) if isinstance(vectorstore, Redis): return RedisTranslator.from_vectorstore(vectorstore) if isinstance(vectorstore, TencentVectorDB): fields = [ field.name for field in (vectorstore.meta_fields or []) if field.index ] return TencentVectorDBTranslator(fields) if vectorstore.__class__ in builtin_translators: return builtin_translators[vectorstore.__class__]() try: from langchain_astradb.vectorstores import AstraDBVectorStore except ImportError: pass else: if isinstance(vectorstore, AstraDBVectorStore): return AstraDBTranslator() try: from langchain_elasticsearch.vectorstores import ElasticsearchStore except ImportError: pass else: if isinstance(vectorstore, ElasticsearchStore): return ElasticsearchTranslator() try: from langchain_pinecone import PineconeVectorStore except ImportError: pass else: if isinstance(vectorstore, PineconeVectorStore): return PineconeTranslator() try: from langchain_milvus import Milvus except ImportError: pass else: if isinstance(vectorstore, Milvus): return MilvusTranslator() try: from langchain_mongodb import MongoDBAtlasVectorSearch except ImportError: pass else: if isinstance(vectorstore, MongoDBAtlasVectorSearch): return MongoDBAtlasTranslator() try: from langchain_neo4j import Neo4jVector except ImportError: pass else: if isinstance(vectorstore, Neo4jVector): return Neo4jTranslator() try: # Trying langchain_chroma import if exists from langchain_chroma import Chroma except ImportError: pass else: if isinstance(vectorstore, Chroma): return ChromaTranslator() try: from langchain_postgres import PGVector from langchain_postgres import PGVectorTranslator as NewPGVectorTranslator except ImportError: pass else: if isinstance(vectorstore, PGVector): return NewPGVectorTranslator() try: from langchain_qdrant import QdrantVectorStore except ImportError: pass else: if isinstance(vectorstore, QdrantVectorStore): return QdrantTranslator(metadata_key=vectorstore.metadata_payload_key) try: # Added in langchain-community==0.2.11 from langchain_community.query_constructors.hanavector import HanaTranslator from langchain_community.vectorstores import HanaDB except ImportError: pass else: if isinstance(vectorstore, HanaDB): return HanaTranslator() try: # Trying langchain_weaviate (weaviate v4) import if exists from langchain_weaviate.vectorstores import WeaviateVectorStore except ImportError: pass else: if isinstance(vectorstore, WeaviateVectorStore): return WeaviateTranslator() msg = ( f"Self query retriever with Vector Store type {vectorstore.__class__}" f" not supported." ) raise ValueError(msg) class SelfQueryRetriever(BaseRetriever): """Self Query Retriever. Retriever that uses a vector store and an LLM to generate the vector store queries. """ vectorstore: VectorStore """The underlying vector store from which documents will be retrieved.""" query_constructor: Runnable[dict, StructuredQuery] = Field(alias="llm_chain") """The query constructor chain for generating the vector store queries. llm_chain is legacy name kept for backwards compatibility.""" search_type: str = "similarity" """The search type to perform on the vector store.""" search_kwargs: dict = Field(default_factory=dict) """Keyword arguments to pass in to the vector store search.""" structured_query_translator: Visitor """Translator for turning internal query language into `VectorStore` search params.""" # noqa: E501 verbose: bool = False use_original_query: bool = False """Use original query instead of the revised new query from LLM""" model_config = ConfigDict( populate_by_name=True, arbitrary_types_allowed=True, ) @model_validator(mode="before") @classmethod def validate_translator(cls, values: dict) -> Any: """Validate translator.""" if "structured_query_translator" not in values: values["structured_query_translator"] = _get_builtin_translator( values["vectorstore"], ) return values @property def llm_chain(self) -> Runnable: """llm_chain is legacy name kept for backwards compatibility.""" return self.query_constructor def _prepare_query( self, query: str, structured_query: StructuredQuery, ) -> tuple[str, dict[str, Any]]: new_query, new_kwargs = self.structured_query_translator.visit_structured_query( structured_query, ) if structured_query.limit is not None: new_kwargs["k"] = structured_query.limit if self.use_original_query: new_query = query search_kwargs = {**self.search_kwargs, **new_kwargs} return new_query, search_kwargs def _get_docs_with_query( self, query: str, search_kwargs: dict[str, Any], ) -> list[Document]: return self.vectorstore.search(query, self.search_type, **search_kwargs) async def _aget_docs_with_query( self, query: str, search_kwargs: dict[str, Any], ) -> list[Document]: return await self.vectorstore.asearch(query, self.search_type, **search_kwargs) @override def _get_relevant_documents( self, query: str, *, run_manager: CallbackManagerForRetrieverRun, ) -> list[Document]: structured_query = self.query_constructor.invoke( {"query": query}, config={"callbacks": run_manager.get_child()}, ) if self.verbose: logger.info("Generated Query: %s", structured_query) new_query, search_kwargs = self._prepare_query(query, structured_query) return self._get_docs_with_query(new_query, search_kwargs) @override async def _aget_relevant_documents( self, query: str, *, run_manager: AsyncCallbackManagerForRetrieverRun, ) -> list[Document]: structured_query = await self.query_constructor.ainvoke( {"query": query}, config={"callbacks": run_manager.get_child()}, ) if self.verbose: logger.info("Generated Query: %s", structured_query) new_query, search_kwargs = self._prepare_query(query, structured_query) return await self._aget_docs_with_query(new_query, search_kwargs) @classmethod def from_llm( cls, llm: BaseLanguageModel, vectorstore: VectorStore, document_contents: str, metadata_field_info: Sequence[AttributeInfo | dict], structured_query_translator: Visitor | None = None, chain_kwargs: dict | None = None, enable_limit: bool = False, # noqa: FBT001,FBT002 use_original_query: bool = False, # noqa: FBT001,FBT002 **kwargs: Any, ) -> "SelfQueryRetriever": """Create a SelfQueryRetriever from an LLM and a vector store. Args: llm: The language model to use for generating queries. vectorstore: The vector store to use for retrieving documents. document_contents: Description of the page contents of the document to be queried. metadata_field_info: Metadata field information for the documents. structured_query_translator: Optional translator for turning internal query language into `VectorStore` search params. chain_kwargs: Additional keyword arguments for the query constructor. enable_limit: Whether to enable the limit operator. use_original_query: Whether to use the original query instead of the revised query from the LLM. **kwargs: Additional keyword arguments for the SelfQueryRetriever. Returns: An instance of SelfQueryRetriever. """ if structured_query_translator is None: structured_query_translator = _get_builtin_translator(vectorstore) chain_kwargs = chain_kwargs or {} if ( "allowed_comparators" not in chain_kwargs and structured_query_translator.allowed_comparators is not None ): chain_kwargs["allowed_comparators"] = ( structured_query_translator.allowed_comparators ) if ( "allowed_operators" not in chain_kwargs and structured_query_translator.allowed_operators is not None ): chain_kwargs["allowed_operators"] = ( structured_query_translator.allowed_operators ) query_constructor = load_query_constructor_runnable( llm, document_contents, metadata_field_info, enable_limit=enable_limit, **chain_kwargs, ) query_constructor = query_constructor.with_config( run_name=QUERY_CONSTRUCTOR_RUN_NAME, ) return cls( query_constructor=query_constructor, vectorstore=vectorstore, use_original_query=use_original_query, structured_query_translator=structured_query_translator, **kwargs, )
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/base.py", "license": "MIT License", "lines": 369, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_complex
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/chroma.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.chroma import ChromaTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "ChromaTranslator": "langchain_community.query_constructors.chroma", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["ChromaTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/chroma.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/dashvector.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.dashvector import DashvectorTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "DashvectorTranslator": "langchain_community.query_constructors.dashvector", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["DashvectorTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/dashvector.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/databricks_vector_search.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.databricks_vector_search import ( DatabricksVectorSearchTranslator, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "DatabricksVectorSearchTranslator": ( "langchain_community.query_constructors.databricks_vector_search" ), } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["DatabricksVectorSearchTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/databricks_vector_search.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/deeplake.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.deeplake import ( DeepLakeTranslator, can_cast_to_float, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "DeepLakeTranslator": "langchain_community.query_constructors.deeplake", "can_cast_to_float": "langchain_community.query_constructors.deeplake", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["DeepLakeTranslator", "can_cast_to_float"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/deeplake.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/dingo.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.dingo import DingoDBTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "DingoDBTranslator": "langchain_community.query_constructors.dingo", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["DingoDBTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/dingo.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/elasticsearch.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.elasticsearch import ( ElasticsearchTranslator, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "ElasticsearchTranslator": "langchain_community.query_constructors.elasticsearch", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["ElasticsearchTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/elasticsearch.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/milvus.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.milvus import ( MilvusTranslator, process_value, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "MilvusTranslator": "langchain_community.query_constructors.milvus", "process_value": "langchain_community.query_constructors.milvus", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["MilvusTranslator", "process_value"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/milvus.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/mongodb_atlas.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.mongodb_atlas import ( MongoDBAtlasTranslator, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "MongoDBAtlasTranslator": "langchain_community.query_constructors.mongodb_atlas", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["MongoDBAtlasTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/mongodb_atlas.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/myscale.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.myscale import MyScaleTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "MyScaleTranslator": "langchain_community.query_constructors.myscale", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["MyScaleTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/myscale.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/pgvector.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.pgvector import PGVectorTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "PGVectorTranslator": "langchain_community.query_constructors.pgvector", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["PGVectorTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/pgvector.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/pinecone.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.pinecone import PineconeTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "PineconeTranslator": "langchain_community.query_constructors.pinecone", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["PineconeTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/pinecone.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/qdrant.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.qdrant import QdrantTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "QdrantTranslator": "langchain_community.query_constructors.qdrant", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["QdrantTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/qdrant.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/redis.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.redis import RedisTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "RedisTranslator": "langchain_community.query_constructors.redis", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["RedisTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/redis.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/supabase.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.supabase import SupabaseVectorTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "SupabaseVectorTranslator": "langchain_community.query_constructors.supabase", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["SupabaseVectorTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/supabase.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/tencentvectordb.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.tencentvectordb import ( TencentVectorDBTranslator, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "TencentVectorDBTranslator": ( "langchain_community.query_constructors.tencentvectordb" ), } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["TencentVectorDBTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/tencentvectordb.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/timescalevector.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.timescalevector import ( TimescaleVectorTranslator, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "TimescaleVectorTranslator": ( "langchain_community.query_constructors.timescalevector" ), } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["TimescaleVectorTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/timescalevector.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/vectara.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.vectara import ( VectaraTranslator, process_value, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "VectaraTranslator": "langchain_community.query_constructors.vectara", "process_value": "langchain_community.query_constructors.vectara", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["VectaraTranslator", "process_value"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/vectara.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/self_query/weaviate.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.query_constructors.weaviate import WeaviateTranslator # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "WeaviateTranslator": "langchain_community.query_constructors.weaviate", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = ["WeaviateTranslator"]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/self_query/weaviate.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/wikipedia.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import WikipediaRetriever # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"WikipediaRetriever": "langchain_community.retrievers"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "WikipediaRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/wikipedia.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/zep.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import ZepRetriever from langchain_community.retrievers.zep import SearchScope, SearchType # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "SearchScope": "langchain_community.retrievers.zep", "SearchType": "langchain_community.retrievers.zep", "ZepRetriever": "langchain_community.retrievers", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "SearchScope", "SearchType", "ZepRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/zep.py", "license": "MIT License", "lines": 22, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/retrievers/zilliz.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.retrievers import ZillizRetriever from langchain_community.retrievers.zilliz import ZillizRetreiver # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "ZillizRetriever": "langchain_community.retrievers", "ZillizRetreiver": "langchain_community.retrievers.zilliz", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ZillizRetreiver", "ZillizRetriever", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/retrievers/zilliz.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/serpapi.py
"""For backwards compatibility.""" from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.utilities import SerpAPIWrapper # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"SerpAPIWrapper": "langchain_community.utilities"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "SerpAPIWrapper", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/serpapi.py", "license": "MIT License", "lines": 16, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/sql_database.py
"""Keep here for backwards compatibility.""" from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.utilities import SQLDatabase # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"SQLDatabase": "langchain_community.utilities"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "SQLDatabase", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/sql_database.py", "license": "MIT License", "lines": 16, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/storage/file_system.py
import os import re import time from collections.abc import Iterator, Sequence from pathlib import Path from langchain_core.stores import ByteStore from langchain_classic.storage.exceptions import InvalidKeyException class LocalFileStore(ByteStore): """`BaseStore` interface that works on the local file system. Examples: Create a `LocalFileStore` instance and perform operations on it: ```python from langchain_classic.storage import LocalFileStore # Instantiate the LocalFileStore with the root path file_store = LocalFileStore("/path/to/root") # Set values for keys file_store.mset([("key1", b"value1"), ("key2", b"value2")]) # Get values for keys values = file_store.mget(["key1", "key2"]) # Returns [b"value1", b"value2"] # Delete keys file_store.mdelete(["key1"]) # Iterate over keys for key in file_store.yield_keys(): print(key) # noqa: T201 ``` """ def __init__( self, root_path: str | Path, *, chmod_file: int | None = None, chmod_dir: int | None = None, update_atime: bool = False, ) -> None: """Implement the `BaseStore` interface for the local file system. Args: root_path: The root path of the file store. All keys are interpreted as paths relative to this root. chmod_file: Sets permissions for newly created files, overriding the current `umask` if needed. chmod_dir: Sets permissions for newly created dirs, overriding the current `umask` if needed. update_atime: Updates the filesystem access time (but not the modified time) when a file is read. This allows MRU/LRU cache policies to be implemented for filesystems where access time updates are disabled. """ self.root_path = Path(root_path).absolute() self.chmod_file = chmod_file self.chmod_dir = chmod_dir self.update_atime = update_atime def _get_full_path(self, key: str) -> Path: """Get the full path for a given key relative to the root path. Args: key: The key relative to the root path. Returns: The full path for the given key. """ if not re.match(r"^[a-zA-Z0-9_.\-/]+$", key): msg = f"Invalid characters in key: {key}" raise InvalidKeyException(msg) full_path = (self.root_path / key).resolve() root_path = self.root_path.resolve() common_path = os.path.commonpath([root_path, full_path]) if common_path != str(root_path): msg = ( f"Invalid key: {key}. Key should be relative to the full path. " f"{root_path} vs. {common_path} and full path of {full_path}" ) raise InvalidKeyException(msg) return full_path def _mkdir_for_store(self, dir_path: Path) -> None: """Makes a store directory path (including parents) with specified permissions. This is needed because `Path.mkdir()` is restricted by the current `umask`, whereas the explicit `os.chmod()` used here is not. Args: dir_path: The store directory to make. """ if not dir_path.exists(): self._mkdir_for_store(dir_path.parent) dir_path.mkdir(exist_ok=True) if self.chmod_dir is not None: dir_path.chmod(self.chmod_dir) def mget(self, keys: Sequence[str]) -> list[bytes | None]: """Get the values associated with the given keys. Args: keys: A sequence of keys. Returns: A sequence of optional values associated with the keys. If a key is not found, the corresponding value will be `None`. """ values: list[bytes | None] = [] for key in keys: full_path = self._get_full_path(key) if full_path.exists(): value = full_path.read_bytes() values.append(value) if self.update_atime: # update access time only; preserve modified time os.utime(full_path, (time.time(), full_path.stat().st_mtime)) else: values.append(None) return values def mset(self, key_value_pairs: Sequence[tuple[str, bytes]]) -> None: """Set the values for the given keys. Args: key_value_pairs: A sequence of key-value pairs. """ for key, value in key_value_pairs: full_path = self._get_full_path(key) self._mkdir_for_store(full_path.parent) full_path.write_bytes(value) if self.chmod_file is not None: full_path.chmod(self.chmod_file) def mdelete(self, keys: Sequence[str]) -> None: """Delete the given keys and their associated values. Args: keys: A sequence of keys to delete. """ for key in keys: full_path = self._get_full_path(key) if full_path.exists(): full_path.unlink() def yield_keys(self, *, prefix: str | None = None) -> Iterator[str]: """Get an iterator over keys that match the given prefix. Args: prefix: The prefix to match. Yields: Keys that match the given prefix. """ prefix_path = self._get_full_path(prefix) if prefix else self.root_path for file in prefix_path.rglob("*"): if file.is_file(): relative_path = file.relative_to(self.root_path) yield str(relative_path)
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/storage/file_system.py", "license": "MIT License", "lines": 134, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
documentation
langchain-ai/langchain:libs/langchain/langchain_classic/storage/redis.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.storage import RedisStore # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"RedisStore": "langchain_community.storage"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "RedisStore", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/storage/redis.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/storage/upstash_redis.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.storage import UpstashRedisByteStore, UpstashRedisStore # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "UpstashRedisStore": "langchain_community.storage", "UpstashRedisByteStore": "langchain_community.storage", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "UpstashRedisByteStore", "UpstashRedisStore", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/storage/upstash_redis.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/ainetwork/base.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.ainetwork.base import AINBaseTool, OperationType # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "OperationType": "langchain_community.tools.ainetwork.base", "AINBaseTool": "langchain_community.tools.ainetwork.base", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "AINBaseTool", "OperationType", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/ainetwork/base.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/amadeus/base.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.amadeus.base import AmadeusBaseTool # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"AmadeusBaseTool": "langchain_community.tools.amadeus.base"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "AmadeusBaseTool", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/amadeus/base.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/arxiv/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import ArxivQueryRun from langchain_community.tools.arxiv.tool import ArxivInput # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "ArxivInput": "langchain_community.tools.arxiv.tool", "ArxivQueryRun": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ArxivInput", "ArxivQueryRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/arxiv/tool.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/azure_cognitive_services/text2speech.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import AzureCogsText2SpeechTool # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"AzureCogsText2SpeechTool": "langchain_community.tools"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "AzureCogsText2SpeechTool", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/azure_cognitive_services/text2speech.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/bearly/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import BearlyInterpreterTool from langchain_community.tools.bearly.tool import ( BearlyInterpreterToolArguments, FileInfo, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "BearlyInterpreterToolArguments": "langchain_community.tools.bearly.tool", "FileInfo": "langchain_community.tools.bearly.tool", "BearlyInterpreterTool": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "BearlyInterpreterTool", "BearlyInterpreterToolArguments", "FileInfo", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/bearly/tool.py", "license": "MIT License", "lines": 25, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/bing_search/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import BingSearchResults, BingSearchRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "BingSearchRun": "langchain_community.tools", "BingSearchResults": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "BingSearchResults", "BingSearchRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/bing_search/tool.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/brave_search/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import BraveSearch # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"BraveSearch": "langchain_community.tools"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "BraveSearch", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/brave_search/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/clickup/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.clickup.tool import ClickupAction # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"ClickupAction": "langchain_community.tools.clickup.tool"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ClickupAction", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/clickup/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/dataforseo_api_search/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.dataforseo_api_search.tool import ( DataForSeoAPISearchResults, DataForSeoAPISearchRun, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "DataForSeoAPISearchRun": "langchain_community.tools.dataforseo_api_search.tool", "DataForSeoAPISearchResults": ( "langchain_community.tools.dataforseo_api_search.tool" ), } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "DataForSeoAPISearchResults", "DataForSeoAPISearchRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/dataforseo_api_search/tool.py", "license": "MIT License", "lines": 24, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/ddg_search/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import DuckDuckGoSearchResults, DuckDuckGoSearchRun from langchain_community.tools.ddg_search.tool import DDGInput, DuckDuckGoSearchTool # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "DDGInput": "langchain_community.tools.ddg_search.tool", "DuckDuckGoSearchRun": "langchain_community.tools", "DuckDuckGoSearchResults": "langchain_community.tools", "DuckDuckGoSearchTool": "langchain_community.tools.ddg_search.tool", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "DDGInput", "DuckDuckGoSearchResults", "DuckDuckGoSearchRun", "DuckDuckGoSearchTool", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/ddg_search/tool.py", "license": "MIT License", "lines": 24, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/e2b_data_analysis/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import E2BDataAnalysisTool from langchain_community.tools.e2b_data_analysis.tool import ( E2BDataAnalysisToolArguments, UploadedFile, ) # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "UploadedFile": "langchain_community.tools.e2b_data_analysis.tool", "E2BDataAnalysisToolArguments": "langchain_community.tools.e2b_data_analysis.tool", "E2BDataAnalysisTool": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "E2BDataAnalysisTool", "E2BDataAnalysisToolArguments", "UploadedFile", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/e2b_data_analysis/tool.py", "license": "MIT License", "lines": 25, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/eleven_labs/text2speech.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import ElevenLabsText2SpeechTool # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"ElevenLabsText2SpeechTool": "langchain_community.tools"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "ElevenLabsText2SpeechTool", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/eleven_labs/text2speech.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/github/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.github.tool import GitHubAction # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"GitHubAction": "langchain_community.tools.github.tool"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GitHubAction", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/github/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/gitlab/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.gitlab.tool import GitLabAction # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"GitLabAction": "langchain_community.tools.gitlab.tool"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GitLabAction", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/gitlab/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/gmail/base.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.gmail.base import GmailBaseTool # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"GmailBaseTool": "langchain_community.tools.gmail.base"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GmailBaseTool", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/gmail/base.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/gmail/get_message.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import GmailGetMessage from langchain_community.tools.gmail.get_message import SearchArgsSchema # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "SearchArgsSchema": "langchain_community.tools.gmail.get_message", "GmailGetMessage": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GmailGetMessage", "SearchArgsSchema", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/gmail/get_message.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/gmail/search.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import GmailSearch from langchain_community.tools.gmail.search import Resource, SearchArgsSchema # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "Resource": "langchain_community.tools.gmail.search", "SearchArgsSchema": "langchain_community.tools.gmail.search", "GmailSearch": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GmailSearch", "Resource", "SearchArgsSchema", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/gmail/search.py", "license": "MIT License", "lines": 22, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/gmail/send_message.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import GmailSendMessage from langchain_community.tools.gmail.send_message import SendMessageSchema # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "SendMessageSchema": "langchain_community.tools.gmail.send_message", "GmailSendMessage": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GmailSendMessage", "SendMessageSchema", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/gmail/send_message.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/golden_query/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.golden_query.tool import GoldenQueryRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"GoldenQueryRun": "langchain_community.tools.golden_query.tool"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoldenQueryRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/golden_query/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_finance/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.google_finance.tool import GoogleFinanceQueryRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "GoogleFinanceQueryRun": "langchain_community.tools.google_finance.tool", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoogleFinanceQueryRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_finance/tool.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_jobs/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.google_jobs.tool import GoogleJobsQueryRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"GoogleJobsQueryRun": "langchain_community.tools.google_jobs.tool"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoogleJobsQueryRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_jobs/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_lens/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.google_lens.tool import GoogleLensQueryRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"GoogleLensQueryRun": "langchain_community.tools.google_lens.tool"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoogleLensQueryRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_lens/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_places/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import GooglePlacesTool from langchain_community.tools.google_places.tool import GooglePlacesSchema # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "GooglePlacesSchema": "langchain_community.tools.google_places.tool", "GooglePlacesTool": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GooglePlacesSchema", "GooglePlacesTool", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_places/tool.py", "license": "MIT License", "lines": 20, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_scholar/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.google_scholar.tool import GoogleScholarQueryRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "GoogleScholarQueryRun": "langchain_community.tools.google_scholar.tool", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoogleScholarQueryRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_scholar/tool.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_search/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import GoogleSearchResults, GoogleSearchRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "GoogleSearchRun": "langchain_community.tools", "GoogleSearchResults": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoogleSearchResults", "GoogleSearchRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_search/tool.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_serper/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import GoogleSerperResults, GoogleSerperRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "GoogleSerperRun": "langchain_community.tools", "GoogleSerperResults": "langchain_community.tools", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoogleSerperResults", "GoogleSerperRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_serper/tool.py", "license": "MIT License", "lines": 19, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/google_trends/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools.google_trends.tool import GoogleTrendsQueryRun # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = { "GoogleTrendsQueryRun": "langchain_community.tools.google_trends.tool", } _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "GoogleTrendsQueryRun", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/google_trends/tool.py", "license": "MIT License", "lines": 17, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple
langchain-ai/langchain:libs/langchain/langchain_classic/tools/graphql/tool.py
from typing import TYPE_CHECKING, Any from langchain_classic._api import create_importer if TYPE_CHECKING: from langchain_community.tools import BaseGraphQLTool # Create a way to dynamically look up deprecated imports. # Used to consolidate logic for raising deprecation warnings and # handling optional imports. DEPRECATED_LOOKUP = {"BaseGraphQLTool": "langchain_community.tools"} _import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP) def __getattr__(name: str) -> Any: """Look up attributes dynamically.""" return _import_attribute(name) __all__ = [ "BaseGraphQLTool", ]
{ "repo_id": "langchain-ai/langchain", "file_path": "libs/langchain/langchain_classic/tools/graphql/tool.py", "license": "MIT License", "lines": 15, "canary_id": -1, "canary_value": "", "pii_type": "", "provider": "", "regex_pattern": "", "repetition": -1, "template": "" }
function_simple