hud-python 0.5.37__tar.gz → 0.5.39__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.37 → hud_python-0.5.39}/PKG-INFO +2 -2
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/sync.py +0 -3
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_build.py +2 -2
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/native/graders.py +2 -2
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/anthropic.py +6 -1
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/tests/test_version.py +1 -1
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/version.py +1 -1
- {hud_python-0.5.37 → hud_python-0.5.39}/pyproject.toml +2 -2
- {hud_python-0.5.37 → hud_python-0.5.39}/.gitignore +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/LICENSE +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/README.md +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/examples/README.md +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/__main__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/claude.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/gateway.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/gemini.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/gemini_cua.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/grounded_openai.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/misc/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/misc/integration_test_agent.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/misc/response_agent.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/openai.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/openai_chat.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/operator.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/resolver.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/conftest.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_base_runtime.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_claude.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_gemini.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_grounded_openai_agent.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_integration_test_agent.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_openai.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_operator.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_resolver.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/tests/test_run_eval.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/agents/types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/__main__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/analyze.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/build.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/cancel.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/convert/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/convert/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/convert/harbor.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/convert/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/convert/tests/conftest.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/convert/tests/test_harbor.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/debug.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/deploy.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/dev.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/eval.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/flows/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/flows/dev.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/flows/init.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/flows/tasks.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/flows/templates.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/flows/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/flows/tests/test_dev.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/init.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/link.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/login.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/models.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/push.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/rl.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/scenario.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_analysis_utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_analyze.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_analyze_metadata.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_analyze_module.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_build_failure.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_build_module.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_cli_init.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_cli_main.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_cli_more_wrappers.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_cli_root.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_convert.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_debug.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_debug_directory_mode.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_deploy.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_dev.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_eval.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_eval_bedrock.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_init.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_lockfile_utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_main_module.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_mcp_server.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_push.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_push_happy.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_push_wrapper.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_rl.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_scenario.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_sync.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/tests/test_utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/analysis.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/api.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/args.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/build_display.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/build_logs.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/collect.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/config.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/context.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/docker.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/env_check.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/environment.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/git.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/interactive.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/lockfile.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/logging.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/metadata.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/name_check.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/project_config.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/server.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/source_hash.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tasks.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/taskset.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_collect.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_config.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_docker.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_docker_hints.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_env_check.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_environment.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_git.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_interactive_module.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_logging_utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_metadata.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_source_hash.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/tests/test_tasks.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/validation.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/version_check.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/cli/utils/viewer.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/datasets/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/datasets/loader.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/datasets/runner.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/datasets/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/datasets/tests/test_loader.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/datasets/tests/test_utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/datasets/utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/connection.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/connectors/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/connectors/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/connectors/local.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/connectors/mcp_config.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/connectors/openai.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/connectors/remote.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/environment.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/integrations/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/integrations/adk.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/integrations/anthropic.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/integrations/gemini.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/integrations/langchain.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/integrations/llamaindex.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/integrations/openai.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/mock.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/router.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/scenarios.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_connection.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_connectors.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_environment.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_integrations.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_local_connectors.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_scenarios.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_session_id.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/tests/test_tools.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/utils/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/utils/formats.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/utils/schema.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/environment/utils/tool_wrappers.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/context.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/display.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/instrument.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/manager.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/parallel.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/task.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/tests/test_context.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/tests/test_eval.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/tests/test_manager.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/tests/test_parallel.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/tests/test_task.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/eval/utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/native/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/native/chat.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/native/permissions.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/native/skills.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/native/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/native/tests/test_graders.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/patches/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/patches/mcp_patches.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/patches/warnings.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/py.typed +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/context.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/helper/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/low_level.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/router.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/server.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_add_tool.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_context.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_mcp_server_handlers.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_mcp_server_integration.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_mcp_server_more.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_prefix_naming.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_run_wrapper.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_server_extra.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/server/tests/test_sigterm_runner.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/services/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/services/chat.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/services/chat_service.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/services/reply_metadata.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/services/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/services/tests/test_chat.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/services/tests/test_chat_service.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/settings.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/exceptions.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/hints.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/requests.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/tests/test_exceptions.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/tests/test_hints.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/shared/tests/test_requests.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/telemetry/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/telemetry/exporter.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/telemetry/instrument.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/telemetry/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/telemetry/tests/test_eval_telemetry.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/telemetry/tests/test_exporter.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/telemetry/tests/test_instrument.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/agent.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/apply_patch.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/bash.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/edit.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/gemini_edit.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/gemini_shell.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/gemini_write.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/session.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/shell.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/test_apply_patch.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/test_bash.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/test_bash_extended.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/test_bash_integration.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/test_edit.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/test_gemini_tools.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/tests/test_shell.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/coding/utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/gemini.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/glm.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/hud.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/openai.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/qwen.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/settings.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/tests/test_compression.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/tests/test_computer.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/tests/test_computer_actions.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/computer/tests/test_glm_computer.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/elicitation.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/executors/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/executors/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/executors/pyautogui.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/executors/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/executors/tests/test_base_executor.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/executors/tests/test_pyautogui_executor.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/executors/xdo.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/gemini.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/gemini_read_many.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/glob.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/grep.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/list.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/read.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/tests/test_glob.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/tests/test_grep.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/tests/test_list.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/tests/test_read.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/filesystem/tests/test_read_many.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/grounding/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/grounding/config.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/grounding/grounded_tool.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/grounding/grounder.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/grounding/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/grounding/tests/test_grounded_tool.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/code_execution.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/google_search.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/tool_search.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/url_context.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/web_fetch.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/hosted/web_search.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/jupyter.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/claude.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/gemini.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/session.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/tests/test_claude.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/tests/test_gemini.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/memory/tests/test_session.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/native_types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/playwright.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/response.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/submit.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_agent_tool.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_base.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_elicitation.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_init.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_jupyter_tool.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_native_tool_e2e.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_native_types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_playwright_tool.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_response.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_submit.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_tools.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_tools_init.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/tests/test_utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/tools/utils.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/types.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/env.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/hud_console.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/mcp.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/pretty_errors.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/serialization.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/strict_schema.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/tests/__init__.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/tests/test_init.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/tests/test_pretty_errors.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/tests/test_serialization.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/tests/test_tool_shorthand.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/tool_shorthand.py +0 -0
- {hud_python-0.5.37 → hud_python-0.5.39}/hud/utils/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hud-python
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.39
|
|
4
4
|
Summary: SDK for the HUD platform.
|
|
5
5
|
Project-URL: Homepage, https://github.com/hud-evals/hud-python
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/hud-evals/hud-python/issues
|
|
@@ -34,7 +34,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
34
34
|
Classifier: Programming Language :: Python :: 3.11
|
|
35
35
|
Classifier: Programming Language :: Python :: 3.12
|
|
36
36
|
Requires-Python: <3.13,>=3.11
|
|
37
|
-
Requires-Dist: a2a-sdk
|
|
37
|
+
Requires-Dist: a2a-sdk==0.3.26
|
|
38
38
|
Requires-Dist: blessed>=1.20.0
|
|
39
39
|
Requires-Dist: fastmcp==3.0.2
|
|
40
40
|
Requires-Dist: httpx<1,>=0.23.0
|
|
@@ -370,8 +370,6 @@ def _export_remote_tasks(
|
|
|
370
370
|
hud_console: HUDConsole,
|
|
371
371
|
) -> None:
|
|
372
372
|
"""Fetch remote tasks and export to JSON or CSV."""
|
|
373
|
-
from hud.cli.utils.evalset import fetch_remote_tasks
|
|
374
|
-
|
|
375
373
|
hud_console.progress_message("Fetching remote tasks...")
|
|
376
374
|
remote_tasks = fetch_remote_tasks(taskset_id, api_url, headers)
|
|
377
375
|
|
|
@@ -387,7 +385,6 @@ def _export_remote_tasks(
|
|
|
387
385
|
json.dump(remote_tasks, f, indent=2, default=str)
|
|
388
386
|
|
|
389
387
|
elif suffix == ".csv":
|
|
390
|
-
# Flatten tasks: spread args as arg:key and column_values as col:key
|
|
391
388
|
all_arg_keys: set[str] = set()
|
|
392
389
|
all_col_keys: set[str] = set()
|
|
393
390
|
for t in remote_tasks:
|
|
@@ -61,12 +61,12 @@ class TestIncrementVersion:
|
|
|
61
61
|
def test_increment_minor(self):
|
|
62
62
|
"""Test incrementing minor version."""
|
|
63
63
|
assert increment_version("1.2.3", "minor") == "1.3.0"
|
|
64
|
-
assert increment_version("0.5.
|
|
64
|
+
assert increment_version("0.5.39", "minor") == "0.6.0"
|
|
65
65
|
|
|
66
66
|
def test_increment_major(self):
|
|
67
67
|
"""Test incrementing major version."""
|
|
68
68
|
assert increment_version("1.2.3", "major") == "2.0.0"
|
|
69
|
-
assert increment_version("0.5.
|
|
69
|
+
assert increment_version("0.5.38", "major") == "1.0.0"
|
|
70
70
|
|
|
71
71
|
def test_increment_with_v_prefix(self):
|
|
72
72
|
"""Test incrementing version with v prefix."""
|
|
@@ -378,7 +378,7 @@ class LLMJudgeGrader(Grader):
|
|
|
378
378
|
api_key = os.environ.get("HUD_API_KEY", "")
|
|
379
379
|
client = AsyncOpenAI(base_url="https://inference.hud.ai", api_key=api_key)
|
|
380
380
|
|
|
381
|
-
async def _generate(system_prompt: str, user_prompt: str) -> str:
|
|
381
|
+
async def _generate(system_prompt: str, user_prompt: str, **kwargs: Any) -> str:
|
|
382
382
|
response = await client.chat.completions.create(
|
|
383
383
|
model=model,
|
|
384
384
|
max_tokens=1024,
|
|
@@ -403,7 +403,7 @@ class LLMJudgeGrader(Grader):
|
|
|
403
403
|
"reason": getattr(item, "reason", None),
|
|
404
404
|
"weight": item.weight,
|
|
405
405
|
}
|
|
406
|
-
for item in result.report
|
|
406
|
+
for item in (result.report or [])
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
return (float(result.score), {"criteria": verdicts, "model": model})
|
|
@@ -90,7 +90,12 @@ class AnthropicComputerTool(HudComputerTool):
|
|
|
90
90
|
api_name="computer",
|
|
91
91
|
beta="computer-use-2025-11-24",
|
|
92
92
|
role="computer",
|
|
93
|
-
supported_models=(
|
|
93
|
+
supported_models=(
|
|
94
|
+
"*claude-opus-4-5*",
|
|
95
|
+
"*claude-opus-4-6*",
|
|
96
|
+
"*claude-sonnet-4-6*",
|
|
97
|
+
"claude-opus-4-7*",
|
|
98
|
+
),
|
|
94
99
|
),
|
|
95
100
|
NativeToolSpec(
|
|
96
101
|
api_type="computer_20250124",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "hud-python"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.39"
|
|
4
4
|
description = "SDK for the HUD platform."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11, <3.13"
|
|
@@ -18,7 +18,7 @@ dependencies = [
|
|
|
18
18
|
"mcp>=1.24.0,<2.0",
|
|
19
19
|
"fastmcp==3.0.2",
|
|
20
20
|
# A2A protocol
|
|
21
|
-
"a2a-sdk
|
|
21
|
+
"a2a-sdk==0.3.26",
|
|
22
22
|
# For all inference agents
|
|
23
23
|
"openai>=2.26.0",
|
|
24
24
|
# CLI dependencies
|
|
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
|