For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quickstart

5-minute quickstart — pick a path and ship.

You're in a hurry. Pick the line that matches you.

"I want to know which model is best at X"

  1. stratix.layerlens.ai/models — browse the catalog

  2. Compare models head-to-head

  3. Read the relevant Quarterly report

No signup. Five minutes.

"I want to evaluate my AI on my data"

pip install layerlens --extra-index-url https://sdk.layerlens.ai/package
export LAYERLENS_STRATIX_API_KEY="..."
from layerlens import Stratix
client = Stratix()
model = client.models.get_by_key("openai/gpt-4o")
benchmark = client.benchmarks.get_by_key("mmlu")
e = client.evaluations.create(model=model, benchmark=benchmark)
print(client.evaluations.wait_for_completion(e).accuracy)

Sign upFirst evaluation.

"I just want to verify my key works (curl, language-agnostic)"

JSON back → you're good. 401 → see Authentication.

"I want to gate AI changes in CI"

Tutorial 3: CI/CD quality gates. 30 minutes from "no gate" to "regression blocks merge."

"I want to score live production traces"

Tutorial 4: Score live traces. Continuous evaluation on real traffic.

"I'm evaluating Stratix for my company"

Got 30 seconds?

Stratix is the AI evaluation platform. Public catalog of 175+ models on stratix.layerlens.ai. Private workspace at stratix.layerlens.ai. Python SDK on PyPI. Read the README.

Last updated

Was this helpful?