Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions agent/prompt_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -993,6 +993,7 @@ def _probe_remote_backend(env_type: str) -> str | None:
"docker_extra_args": config.get("docker_extra_args", []),
"docker_persist_across_processes": config.get("docker_persist_across_processes", True),
"docker_orphan_reaper": config.get("docker_orphan_reaper", True),
"docker_network": config.get("docker_network", True),
}

env = _create_environment(
Expand Down
3 changes: 2 additions & 1 deletion tests/tools/test_docker_network_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ def test_sibling_container_config_sites_carry_docker_network():

import tools.code_execution_tool as code_execution_tool
import tools.file_tools as file_tools
import agent.prompt_builder as prompt_builder

for module in (terminal_tool, file_tools, code_execution_tool):
for module in (terminal_tool, file_tools, code_execution_tool, prompt_builder):
tree = ast.parse(inspect.getsource(module))
sites = 0
for node in ast.walk(tree):
Expand Down