DockerSandbox + LangChain file/shell tools extracted into a standalone package. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
281 B
Python
7 lines
281 B
Python
"""docker_agent_sandbox – Docker sandbox + LangChain tools for LLM agents."""
|
||
|
||
from docker_agent_sandbox.sandbox import DockerSandbox
|
||
from docker_agent_sandbox.tools import make_bash_tool, make_file_ops_tools
|
||
|
||
__all__ = ["DockerSandbox", "make_bash_tool", "make_file_ops_tools"]
|