mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
68 lines
2.0 KiB
Python
68 lines
2.0 KiB
Python
import warnings
|
|
from typing import List
|
|
|
|
from langchain_community.tools.shell.tool import ShellInput, ShellTool
|
|
|
|
# Test data
|
|
test_commands = ["echo 'Hello, World!'", "echo 'Another command'"]
|
|
|
|
|
|
def test_shell_input_validation() -> None:
|
|
shell_input = ShellInput(commands=test_commands)
|
|
assert isinstance(shell_input.commands, list)
|
|
assert len(shell_input.commands) == 2
|
|
|
|
with warnings.catch_warnings(record=True) as w:
|
|
ShellInput(commands=test_commands)
|
|
assert len(w) == 1
|
|
assert (
|
|
str(w[-1].message)
|
|
== "The shell tool has no safeguards by default. Use at your own risk."
|
|
)
|
|
|
|
|
|
class PlaceholderProcess:
|
|
def __init__(self, output: str = "") -> None:
|
|
self._commands: List[str] = []
|
|
self.output = output
|
|
|
|
def _run(self, commands: List[str]) -> str:
|
|
self._commands = commands
|
|
return self.output
|
|
|
|
def run(self, commands: List[str]) -> str:
|
|
return self._run(commands)
|
|
|
|
async def arun(self, commands: List[str]) -> str:
|
|
return self._run(commands)
|
|
|
|
|
|
def test_shell_tool_init() -> None:
|
|
placeholder = PlaceholderProcess()
|
|
shell_tool = ShellTool(process=placeholder)
|
|
assert shell_tool.name == "terminal"
|
|
assert isinstance(shell_tool.description, str)
|
|
assert shell_tool.args_schema == ShellInput
|
|
assert shell_tool.process is not None
|
|
|
|
|
|
def test_shell_tool_run() -> None:
|
|
placeholder = PlaceholderProcess(output="hello")
|
|
shell_tool = ShellTool(process=placeholder)
|
|
result = shell_tool._run(commands=test_commands)
|
|
assert result.strip() == "hello"
|
|
|
|
|
|
async def test_shell_tool_arun() -> None:
|
|
placeholder = PlaceholderProcess(output="hello")
|
|
shell_tool = ShellTool(process=placeholder)
|
|
result = await shell_tool._arun(commands=test_commands)
|
|
assert result.strip() == "hello"
|
|
|
|
|
|
def test_shell_tool_run_str() -> None:
|
|
placeholder = PlaceholderProcess(output="hello")
|
|
shell_tool = ShellTool(process=placeholder)
|
|
result = shell_tool._run(commands="echo 'Hello, World!'")
|
|
assert result.strip() == "hello"
|