News
1 min read
Agent Run Observability in Laravel AI SDK 0.11
Laravel AI SDK 0.11 brings native OpenTelemetry support, flame-graphs for multi-turn agent chains, and integrated latency tracing.
OpenTelemetry & Flame-Graphs for AI Agents
The release of Laravel AI SDK 0.11 focuses on production observability. Developers can now trace multi-turn agent conversations across distributed microservices with native OpenTelemetry integrations.
// config/ai.php
return [
'observability' => [
'enabled' => env('AI_OBSERVABILITY_ENABLED', true),
'driver' => 'opentelemetry',
'endpoint' => env('OTEL_EXPORTER_OTLP_ENDPOINT', 'http://localhost:4318'),
],
];