6 lines
183 B
Python
6 lines
183 B
Python
from agent.integrations.docker_sandbox import DockerSandbox
|
|
|
|
|
|
def create_sandbox(sandbox_id: str | None = None) -> DockerSandbox:
|
|
return DockerSandbox() # Phase 2 implementation
|