I can attest to it being the only reliable and performant LLM monitoring platform I've tried. Founding team is great to talk to and super responsive.
Tommy He
CTO, Clarum
Laminar's evals help us maintain high accuracy while moving fast, and their team is incredibly responsive. We now use them for every LLM based feature we build.
Hashim Rehman
CTO, Remo
Laminar's tracing is genuinely great. So much better than the others I've tried.
Michael Ettlinger
CTO, Saturn
Trace
Tracing your LLM application provides visibility into every execution step while collecting valuable data for evaluations, few-shot examples, and fine-tuning. With Laminar, you can start tracing with just 2 lines of code.
import { Laminar, observe } from '@lmnr-ai/lmnr';
// automatically traces common LLM frameworks and SDKs
Laminar.initialize({ projectApiKey: "..." });
// you can also manually trace any function
const myFunction = observe({name: 'myFunc'}, async () => {
...
})