gitextract_ee17qqds/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ ├── request_new_features.yaml │ │ └── show_me_the_bug.yaml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── build-package.yaml │ ├── environment-corrupt-check.yaml │ ├── pr-autodiff.yaml │ ├── pre-commit.yaml │ ├── stale.yaml │ └── top-issues.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── README_ja.md ├── README_ko.md ├── README_zh.md ├── app/ │ ├── __init__.py │ ├── agent/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── browser.py │ │ ├── data_analysis.py │ │ ├── manus.py │ │ ├── mcp.py │ │ ├── react.py │ │ ├── sandbox_agent.py │ │ ├── swe.py │ │ └── toolcall.py │ ├── bedrock.py │ ├── config.py │ ├── daytona/ │ │ ├── README.md │ │ ├── sandbox.py │ │ └── tool_base.py │ ├── exceptions.py │ ├── flow/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── flow_factory.py │ │ └── planning.py │ ├── llm.py │ ├── logger.py │ ├── mcp/ │ │ ├── __init__.py │ │ └── server.py │ ├── prompt/ │ │ ├── __init__.py │ │ ├── browser.py │ │ ├── manus.py │ │ ├── mcp.py │ │ ├── planning.py │ │ ├── swe.py │ │ ├── toolcall.py │ │ └── visualization.py │ ├── sandbox/ │ │ ├── __init__.py │ │ ├── client.py │ │ └── core/ │ │ ├── exceptions.py │ │ ├── manager.py │ │ ├── sandbox.py │ │ └── terminal.py │ ├── schema.py │ ├── tool/ │ │ ├── __init__.py │ │ ├── ask_human.py │ │ ├── base.py │ │ ├── bash.py │ │ ├── browser_use_tool.py │ │ ├── chart_visualization/ │ │ │ ├── README.md │ │ │ ├── README_ja.md │ │ │ ├── README_ko.md │ │ │ ├── README_zh.md │ │ │ ├── __init__.py │ │ │ ├── chart_prepare.py │ │ │ ├── data_visualization.py │ │ │ ├── package.json │ │ │ ├── python_execute.py │ │ │ ├── src/ │ │ │ │ └── chartVisualize.ts │ │ │ ├── test/ │ │ │ │ ├── chart_demo.py │ │ │ │ └── report_demo.py │ │ │ └── tsconfig.json │ │ ├── computer_use_tool.py │ │ ├── crawl4ai.py │ │ ├── create_chat_completion.py │ │ ├── file_operators.py │ │ ├── mcp.py │ │ ├── planning.py │ │ ├── python_execute.py │ │ ├── sandbox/ │ │ │ ├── sb_browser_tool.py │ │ │ ├── sb_files_tool.py │ │ │ ├── sb_shell_tool.py │ │ │ └── sb_vision_tool.py │ │ ├── search/ │ │ │ ├── __init__.py │ │ │ ├── baidu_search.py │ │ │ ├── base.py │ │ │ ├── bing_search.py │ │ │ ├── duckduckgo_search.py │ │ │ └── google_search.py │ │ ├── str_replace_editor.py │ │ ├── terminate.py │ │ ├── tool_collection.py │ │ └── web_search.py │ └── utils/ │ ├── __init__.py │ ├── files_utils.py │ └── logger.py ├── config/ │ ├── .gitignore │ ├── config.example-daytona.toml │ ├── config.example-model-anthropic.toml │ ├── config.example-model-azure.toml │ ├── config.example-model-google.toml │ ├── config.example-model-jiekouai.toml │ ├── config.example-model-ollama.toml │ ├── config.example-model-ppio.toml │ ├── config.example.toml │ └── mcp.example.json ├── examples/ │ ├── benchmarks/ │ │ └── __init__.py │ └── use_case/ │ ├── japan-travel-plan/ │ │ ├── japan_travel_guide_instructions.txt │ │ ├── japan_travel_handbook.html │ │ ├── japan_travel_handbook_mobile.html │ │ └── japan_travel_handbook_print.html │ └── readme.md ├── main.py ├── protocol/ │ └── a2a/ │ ├── __init__.py │ └── app/ │ ├── README.md │ ├── README_zh.md │ ├── __init__.py │ ├── agent.py │ ├── agent_executor.py │ └── main.py ├── requirements.txt ├── run_flow.py ├── run_mcp.py ├── run_mcp_server.py ├── sandbox_main.py ├── setup.py └── tests/ └── sandbox/ ├── test_client.py ├── test_docker_terminal.py ├── test_sandbox.py └── test_sandbox_manager.py