Arcane OS Docs Development only

Reference

ollama.chunk

An Ollama streaming operation receives its next response chunk.

  • Reference

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

Subscribe

const unsubscribe = Arcane.events.on('ollama.chunk', function handleOllamaChunk(data) {
    // Read only the documented fields from data here.
    console.info('Received ollama.chunk.');
});

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

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

Delivery

Live, future-only correlated stream notification.

Hosts

Core-backed hosts and admitted Android application hosts for proxied chat streaming.

When it fires

An Ollama streaming operation receives its next response chunk.

Event data

streamId identifies the stream selected by the caller or Arcane; operation names the streamed Ollama operation; chunk is the provider response object for that delivery.

Reference group

Events

Repository and reviewed source access