跳转到主要内容

API Reference

This section provides the complete module reference for the browseruse_bench package.

Package Structure

browseruse_bench/

`-- utils/                # Utility modules
    |-- task_utils.py     # Task processing
    |-- eval_utils.py     # Evaluation tools
    |-- cli_utils.py      # CLI argument parsing
    |-- stats_utils.py    # Statistics tools
    `-- config_loader.py  # Configuration loading

Quick Import

# Import utility functions
from browseruse_bench.utils import (
    REPO_ROOT,
    load_tasks,
    filter_tasks,
    EvaluationModel,
    load_evaluation_model,
    create_run_parser,
    create_eval_parser,
    generate_evaluation_summary,
    load_config_file,
)

Module Navigation

Task Utils

Task loading, filtering and processing

Eval Utils

Evaluation model and scoring tools

CLI Utils

Command-line argument parsing

Stats Utils

Statistics calculation and summary generation

Config Loader

YAML configuration loading