hud-python 0.5.5__tar.gz → 0.5.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hud_python-0.5.5 → hud_python-0.5.6}/PKG-INFO +1 -1
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/claude.py +1 -1
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/gemini_cua.py +3 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/operator.py +2 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/environment.py +8 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tests/test_version.py +1 -1
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/version.py +1 -1
- {hud_python-0.5.5 → hud_python-0.5.6}/pyproject.toml +1 -1
- {hud_python-0.5.5 → hud_python-0.5.6}/.gitignore +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/LICENSE +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/README.md +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/examples/README.md +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/__main__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/base.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/gateway.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/gemini.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/grounded_openai.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/misc/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/misc/integration_test_agent.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/misc/response_agent.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/openai.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/openai_chat.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/resolver.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/conftest.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_base.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_base_runtime.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_claude.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_client.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_gemini.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_grounded_openai_agent.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_openai.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_operator.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_resolver.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/agents/tests/test_run_eval.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/__main__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/analyze.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/build.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/clone.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/debug.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/dev.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/eval.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/flows/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/flows/dev.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/flows/init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/flows/tasks.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/flows/templates.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/flows/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/flows/tests/test_dev.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/get.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/list_func.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/pull.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/push.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/remove.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/rft.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/rft_status.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_analyze.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_analyze_metadata.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_analyze_module.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_build.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_build_failure.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_build_module.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_cli_init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_cli_main.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_cli_more_wrappers.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_cli_root.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_clone.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_convert.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_cursor.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_debug.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_dev.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_eval.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_eval_bedrock.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_list_func.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_main_module.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_mcp_server.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_pull.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_push.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_push_happy.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_push_wrapper.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_registry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/tests/test_utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/celebrate.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/config.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/cursor.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/docker.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/env_check.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/environment.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/git.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/interactive.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/local_runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/logging.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/metadata.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/package_runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/registry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/remote_runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/server.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/source_hash.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tasks.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_config.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_docker.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_docker_hints.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_env_check.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_environment.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_git.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_interactive_module.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_local_runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_logging_utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_metadata.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_package_runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_registry_utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_remote_runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_runner_modules.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_source_hash.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/tests/test_tasks.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/version_check.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/cli/utils/viewer.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/README.md +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/base.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/environment.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/fastmcp.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/mcp_use.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/tests/test_analyze_scenarios.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/tests/test_client_integration.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/tests/test_fastmcp.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/tests/test_mcp_use_retry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/tests/test_protocol.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/utils/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/utils/mcp_use_retry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/utils/retry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/clients/utils/retry_transport.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/datasets/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/datasets/loader.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/datasets/runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/datasets/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/datasets/tests/test_loader.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/datasets/tests/test_utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/datasets/utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/connection.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/connectors/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/connectors/base.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/connectors/local.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/connectors/mcp_config.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/connectors/openai.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/connectors/remote.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/integrations/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/integrations/adk.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/integrations/anthropic.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/integrations/gemini.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/integrations/langchain.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/integrations/llamaindex.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/integrations/openai.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/mock.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/router.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/scenarios.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/test_connection.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/test_connectors.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/test_environment.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/test_integrations.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/test_local_connectors.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/test_scenarios.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/tests/test_tools.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/types.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/utils/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/utils/formats.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/utils/schema.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/environment/utils/tool_wrappers.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/context.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/display.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/instrument.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/manager.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/parallel.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/task.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/tests/test_context.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/tests/test_eval.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/tests/test_manager.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/tests/test_parallel.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/tests/test_task.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/types.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/eval/utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/native/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/native/comparator.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/native/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/native/tests/test_comparator.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/native/tests/test_native_init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/patches/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/patches/mcp_patches.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/patches/warnings.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/py.typed +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/samples/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/samples/browser.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/context.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/helper/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/low_level.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/router.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/server.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_add_tool.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_context.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_mcp_server_handlers.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_mcp_server_integration.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_mcp_server_more.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_run_wrapper.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_server_extra.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/server/tests/test_sigterm_runner.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/settings.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/exceptions.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/hints.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/requests.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/tests/test_exceptions.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/tests/test_hints.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/shared/tests/test_requests.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/telemetry/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/telemetry/exporter.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/telemetry/instrument.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/telemetry/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/telemetry/tests/test_eval_telemetry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/telemetry/tests/test_exporter.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/telemetry/tests/test_instrument.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/agent.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/apply_patch.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/base.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/bash.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/computer/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/computer/anthropic.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/computer/gemini.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/computer/hud.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/computer/openai.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/computer/qwen.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/computer/settings.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/edit.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/executors/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/executors/base.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/executors/pyautogui.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/executors/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/executors/tests/test_base_executor.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/executors/tests/test_pyautogui_executor.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/executors/xdo.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/grounding/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/grounding/config.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/grounding/grounded_tool.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/grounding/grounder.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/grounding/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/grounding/tests/test_grounded_tool.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/jupyter.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/playwright.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/response.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/shell.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/submit.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_agent_tool.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_apply_patch.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_base.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_bash.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_bash_extended.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_computer.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_computer_actions.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_edit.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_jupyter_tool.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_playwright_tool.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_response.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_shell.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_submit.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_tools.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_tools_init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_types.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/tests/test_utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/types.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/tools/utils.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/types.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/env.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/hud_console.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/mcp.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/pretty_errors.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/strict_schema.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/telemetry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tests/__init__.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tests/test_init.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tests/test_mcp.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tests/test_pretty_errors.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tests/test_telemetry.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tests/test_tool_shorthand.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/tool_shorthand.py +0 -0
- {hud_python-0.5.5 → hud_python-0.5.6}/hud/utils/types.py +0 -0
|
@@ -303,7 +303,7 @@ class ClaudeAgent(MCPAgent):
|
|
|
303
303
|
display_width_px=computer_settings.ANTHROPIC_COMPUTER_WIDTH,
|
|
304
304
|
display_height_px=computer_settings.ANTHROPIC_COMPUTER_HEIGHT,
|
|
305
305
|
)
|
|
306
|
-
elif tool.name == "computer":
|
|
306
|
+
elif tool.name == "computer" or tool.name.endswith("_computer"):
|
|
307
307
|
logger.warning(
|
|
308
308
|
"Renamed tool %s to 'computer', dropping original 'computer' tool",
|
|
309
309
|
selected_computer_tool.name,
|
|
@@ -129,6 +129,8 @@ class OperatorAgent(OpenAIAgent):
|
|
|
129
129
|
display_height=self._operator_display_height,
|
|
130
130
|
environment=self._operator_environment,
|
|
131
131
|
)
|
|
132
|
+
if tool.name == "computer" or tool.name.endswith("_computer"):
|
|
133
|
+
return None
|
|
132
134
|
return super()._to_openai_tool(tool)
|
|
133
135
|
|
|
134
136
|
def _extract_tool_call(self, item: Any) -> MCPToolCall | None:
|
|
@@ -182,6 +182,10 @@ class Environment(
|
|
|
182
182
|
|
|
183
183
|
return tools
|
|
184
184
|
|
|
185
|
+
def add_tool(self, obj: Any, **kwargs: Any) -> None:
|
|
186
|
+
super().add_tool(obj, **kwargs)
|
|
187
|
+
self._routing_built = False
|
|
188
|
+
|
|
185
189
|
async def call_tool(self, call: Any, /, **kwargs: Any) -> Any:
|
|
186
190
|
"""Call a tool, auto-detecting format and returning matching result format.
|
|
187
191
|
|
|
@@ -446,6 +450,10 @@ class Environment(
|
|
|
446
450
|
logger.debug("Mock mode: returning mock result for tool %s", name)
|
|
447
451
|
return self._get_mock_result(name, arguments)
|
|
448
452
|
|
|
453
|
+
# Rebuild routing if invalidated (e.g., after add_tool)
|
|
454
|
+
if not self._routing_built:
|
|
455
|
+
await self._build_routing()
|
|
456
|
+
|
|
449
457
|
if self._router.is_local(name):
|
|
450
458
|
# Call tool manager directly to avoid FastMCP context requirement
|
|
451
459
|
result = await self._tool_manager.call_tool(name, arguments)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|