Building with LLMs?
Then, you might be
Then, you might be
Struggling to monitor LLM calls in production. Don't know how last prompt change affected performance. Lacking data for fine-tuning and prompt engineering.
Laminar is a single solution for
tracing, evaluating, and labeling
LLM products.
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 () => {
...
})