Overview
Laminar automatically instruments the official OpenAI package with a single line of code, allowing you to trace and monitor all your OpenAI API calls without modifying your existing code. This provides complete visibility into your AI application’s performance, costs, and behavior.Getting Started
- TypeScript
- Python
1. Install Laminar and OpenAI
2. Set up your environment variables
Store your API keys in a.env file:Using OpenAI inside Next.js? The Vercel AI SDK page covers the Next.js-specific setup (
serverExternalPackages, instrumentation.ts, and Laminar.patch for direct SDK clients).3. Initialize Laminar
Just add a single line at the start of your application or file to instrument OpenAI with Laminar.import OpenAI from 'openai' imports the module. Pass it to
instrumentModules, then create the client with new OpenAI.OpenAI().4. Use OpenAI as usual
Monitoring OpenAI usage
After instrumenting your OpenAI calls with Laminar, you’ll be able to:- View detailed traces of each OpenAI API call, including request and response
- Track token usage and cost across different models
- Monitor latency and performance metrics
- Open LLM span in Playground for prompt engineering
- Debug issues with failed API calls or unexpected model outputs
Enrich your OpenAI traces
- Attach sessions, user IDs, metadata, and tags to OpenAI spans via the SDK reference.
- Wrap the functions around your OpenAI calls with
observeand mark them as TOOL spans so they show up in the transcript. - Images you send to vision-capable OpenAI models are captured automatically (Tracing Images).
Vision inputs (images)
Laminar automatically traces image inputs (data URLs and external URLs) sent to vision-capable OpenAI models.- TypeScript
- Python
Related integrations
Anthropic
Trace the Anthropic SDK directly in TypeScript and Python.
Gemini
Trace Gemini calls made with the Google Gen AI SDK.
OpenRouter
Trace OpenRouter requests with model and cost attribution.
OpenAI Agents SDK
Trace agent runs, handoffs, and tool calls.
Vercel AI SDK
Trace
generateText and streamText in Next.js and Node.js.All integrations
Browse every provider, framework, coding agent, and browser integration Laminar supports.