Quarterly rebench
Recipe — quarterly model re-evaluation as the frontier moves.
from layerlens import Stratix
client = Stratix()
# Pull current top reasoning models (filter to your shape)
public_models = client.public.models.get(
categories=["transformer"],
sort_by="releasedAt",
order="desc",
page=1,
page_size=10,
)
benchmark = client.benchmarks.get_by_key("your-team-benchmark")
# Run an evaluation per candidate
for model in public_models.models:
evaluation = client.evaluations.create(model=model, benchmark=benchmark)
print(f"Started {evaluation.id} for {model.key}")See also
Last updated
Was this helpful?