Spaces:
Runtime error
Runtime error
File size: 460 Bytes
129cd69 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
def raise_on_import() -> None:
"""Raise an error on import since is deprecated."""
raise ImportError(
"This module has been moved to langchain-experimental. "
"For more details: https://github.com/langchain-ai/langchain/discussions/11352."
"To access this code, install it with `pip install langchain-experimental`."
"`from langchain_experimental.llm_bash.base "
"import LLMBashChain`"
)
raise_on_import()
|