## ----setup, include=FALSE----------------------------------------------------- knitr::opts_chunk$set(collapse = TRUE, comment = "#>") ## ----registry----------------------------------------------------------------- registry_path <- system.file( "extdata", "model_compatibility.csv", package = "pairwiseLLM" ) if (!nzchar(registry_path)) { source_paths <- c( file.path("inst", "extdata", "model_compatibility.csv"), file.path("..", "inst", "extdata", "model_compatibility.csv") ) registry_path <- source_paths[file.exists(source_paths)][1] } registry <- utils::read.csv(registry_path, check.names = FALSE) registry[c( "backend", "model_id", "endpoint", "live_tested", "batch_tested", "reasoning_mode", "package_version", "test_date", "status" )]