Docs: Update benchmark for google/gemini-3.7-flash EFF:high

This commit is contained in:
github-actions[bot]
2026-08-15 22:47:49 +00:00
parent 0de28d319e
commit bb64a4f756
12 changed files with 428 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
export async function createStreamVisualizer(
asyncIterable,
{ maxPoints = Infinity, alpha = 0.5, width = 800, height = 400, yDomain = [0, 100] } = {}
) {
const { scaleLinear, line } = await import('d3');
const data = [];
let ema;
for await (const { timestamp, value } of asyncIterable) {
ema = ema === undefined ? value : alpha * value + (1 - alpha) * ema;
data.push({ timestamp, value, ema });
if (data.length > maxPoints) data.shift();
}
if (!data.length) return { data, path: '' };
const x = scaleLinear().domain([data[0].timestamp, data.at(-1).timestamp]).range([0, width]);
const y = scaleLinear().domain(yDomain).range([height, 0]);
const path = line().x(d => x(d.timestamp)).y(d => y(d.ema))(data) ?? '';
return { data, path };
}
export default createStreamVisualizer;
// Generation time: 11.140s
// Result: FAIL