Skip to main content

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
│   ├── db_utils.py       # Database operations
│   ├── 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,
    get_db_connection,
    db_cursor,
    generate_evaluation_summary,
    load_config_file,
)

Module Navigation