A/B verdict by persona segment — and the friction each one hits.
Import the matrAIx API into your stack and drive simulations against your own apps — the full platform, in your environment.
$ pip install matraix
import matraix
mx = matraix.connect(api_key="mx_live_…")
# run a simulation in your own stack
run = mx.simulate(
target="https://app.yourco.com/checkout",
level="web", # survey | chatbot | web | app
agents=50_000,
segments=["mobile", "new_users"],
)
report = run.report() # segmented A/B report
data = run.trajectories() # SFT / RL-ready JSONL▋