let total = 0;
let errors = 0; for (const entry of content) { if (!entry || typeof entry !== "object") { continue;
} const block = entry as Record<string, unknown>; const type = normalizeType(block.type); if (!TOOL_RESULT_TYPES.has(type)) { continue;
}
total += 1; if (block.is_error === true) {
errors += 1;
}
}
return { total, errors };
};
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.14 Sekunden
(vorverarbeitet am 2026-06-10)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.