Files
docker-agent-sandbox/docker_agent_sandbox/__init__.py
Matte23 80c2f9b159 feat: Initial library extraction from PIN LLM benchmark
DockerSandbox + LangChain file/shell tools extracted into a standalone package.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-02 11:47:44 +02:00

7 lines
281 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""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"]