Monitoring & Debugging
Monitor your AI Agents, RAGs, and Workflows in real-time.
Install Inspector

Create An Ingestion Key
Inject InspectorObeserver
Logging
Last updated
use Inspector\Neuron\InspctorObserver;
/*
* Inject at runtime
*/
$message = MyAgent::make()
->observe(InspctorObserver::instance('INSPECTOR_INGESTION_KEY'))
->chat(...)
->getMessage();
/*
* Setup the observer once into the agent constructor
*/
class MyAgent extends Agent
{
public function __construct()
{
$this->observe(InspctorObserver::instance('INSPECTOR_INGESTION_KEY'));
}
}use NeuronAI\Observability\LogObserver;
$message = MyAgent::make()
->observe(new LogObserver($logger))
->chat(...)
->getMessage();