This blog focuses on understanding stream laziness in Tabby. You do not need to know this information to use the Tabby, but for those interested, it offers a deeper dive on why and how the Tabby handle its LLM workload.What is streaming?​Let's begin by setting up a simple example program:const express = require('express');

function sleep(ms) {

return new Promise(resolve => setTimeout(resolve, ms));

}

async function* llm() {