Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,10 @@ src/inference_endpoint/
│ ├── benchmark/
│ │ ├── __init__.py
│ │ ├── cli.py # benchmark_app: offline, online, from-config subcommands
│ │ └── execute.py # Phased execution: setup/run_threaded/finalize + BenchmarkContext; run_benchmark runs the main benchmark (cli._run dispatches run_audit when audit: is set)
│ │ ├── execute.py # Phased orchestration: setup_benchmark/run_benchmark_async/finalize_benchmark + BenchmarkContext; run_benchmark runs the main benchmark (cli._run dispatches run_audit when audit: is set)
│ │ ├── profiling.py # Profiler-trigger protocol (vLLM /start_profile,/stop_profile) + ProfileController (URL derivation + start/stop/payload lifecycle)
│ │ ├── accuracy.py # AccuracyConfiguration + per-dataset scoring (_score_accuracy, OSL/response-count rollups, write_accuracy_results)
│ │ └── pipeline.py # MetricsPipeline: ZMQ + metrics-aggregator/event-logger subprocess lifecycle (start/drain_and_build_report/abort/close) + snapshot→Report
│ ├── audit.py # run_audit() — compliance audit orchestrator (phases → verify → result)
│ ├── probe.py # ProbeConfig + execute_probe()
│ ├── info.py # execute_info()
Expand Down
405 changes: 405 additions & 0 deletions src/inference_endpoint/commands/benchmark/accuracy.py

Large diffs are not rendered by default.

Loading
Loading