Arcane OS Docs Development only

Reference

localai.isolated.phase

An isolated-model question enters a lifecycle phase or emits a chat heartbeat.

  • Reference

This focused page is derived from the mechanically checked full event inventory.

Subscribe

const unsubscribe = Arcane.events.on('localai.isolated.phase', function handleLocalaiIsolatedPhase(data) {
    // Read only the documented fields from data here.
    console.info('Received localai.isolated.phase.');
});

// Stop listening when this page no longer needs the event.
function stopListeningForLocalaiIsolatedPhase() {
    unsubscribe();
}

globalThis.addEventListener('pagehide', stopListeningForLocalaiIsolatedPhase, {once: true});

Delivery

Live, future-only correlated operation notification.

Hosts

Core-backed hosts for an application admitted to isolated inference.

When it fires

An isolated-model question enters a lifecycle phase or emits a chat heartbeat.

Event data

operationId correlates the request; phase is unload_before, verify_before, chat, unload_after, or verify_after; chat heartbeats additionally set heartbeat to true, report elapsedMs, and timestamp themselves with at.

Reference group

Events

Repository and reviewed source access