Docs: Update benchmark for google/gemini-3-flash-preview TEMP:0.35

This commit is contained in:
github-actions[bot]
2025-12-17 16:55:05 +00:00
parent 47c178fc67
commit 3c12fd855f
9 changed files with 197 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
export async function createStreamVisualizer(asyncIterable, { maxPoints, alpha, width, height, yDomain }) {
const d3 = await import("https://cdn.skypack.dev/d3@7");
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 = d3.scaleLinear()
.domain([data[0].timestamp, data.at(-1).timestamp])
.range([0, width]);
const y = d3.scaleLinear()
.domain(yDomain)
.range([height, 0]);
const lineGenerator = d3.line()
.x(d => x(d.timestamp))
.y(d => y(d.ema));
return {
data,
path: lineGenerator(data)
};
}
export default createStreamVisualizer;
// Generation time: 16.044s
// Result: PASS