Laminar ✅
Laminar is a specialized observability platform for LLM applications.
Configuration ✅
To use Laminar with Kastrax, configure these environment variables:
OTEL_EXPORTER_OTLP_ENDPOINT=https://api.lmnr.ai:8443
OTEL_EXPORTER_OTLP_HEADERS="Authorization=Bearer your_api_key, x-laminar-team-id=your_team_id"
Implementation ✅
Here’s how to configure Kastrax to use Laminar:
import { Kastrax } from "@kastrax/core";
export const kastrax = new Kastrax({
// ... other config
telemetry: {
serviceName: "your-service-name",
enabled: true,
export: {
type: "otlp",
protocol: "grpc",
},
},
});
Dashboard ✅
Access your Laminar dashboard at https://lmnr.ai/
Last updated on