Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/JAVA/Openclaw/extensions/qa-lab/src/   (KI Agentensystem Version 22©)  Datei vom 26.3.2026 mit Größe 1 kB image not shown  

Quelle  reply-failure.ts

  Sprache: JAVA
 

Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/text-runtime";

const FAILURE_REPLY_PREFIXES = [
  "⚠️ something went wrong while processing your request.",
  "⚠️ session history got out of sync.",
  "⚠️ session history was corrupted.",
  "⚠️ context overflow",
  "⚠️ message ordering conflict.",
  "⚠️ model login expired on the gateway",
  "⚠️ model login failed on the gateway",
  "⚠️ agent failed before reply:",
  "⚠️ ✉️ message failed",
  "⚠️ no api key found for provider ",
  "⚠️ missing api key for ",
];

const VISIBLE_REPLY_LEAK_PATTERNS = [
  /\bchecking thread context\b/i,
  /\bthread context thin\b/i,
  /\bpost a tight progress reply here\b/i,
  /\bposting a coordination nudge\b/i,
  /\bposted a short coordination reply\b/i,
  /\bnot inventing status\b/i,
];

const TOOL_BACKED_FAILURE_PATTERNS = [
  /\btool\s+[a-z0-9_.-]+\s+not found\b/i,
  /^status:\s*blocked\b/im,
];

export function extractQaVisibleReplyLeakText(text: string): string | undefined {
  const trimmed = text.trim();
  if (!trimmed) {
    return undefined;
  }
  if (VISIBLE_REPLY_LEAK_PATTERNS.some((pattern) => pattern.test(trimmed))) {
    return trimmed;
  }
  return undefined;
}

export function extractQaFailureReplyText(text: string): string | undefined {
  const trimmed = text.trim();
  if (!trimmed) {
    return undefined;
  }
  const lower = normalizeLowercaseStringOrEmpty(trimmed);
  if (FAILURE_REPLY_PREFIXES.some((prefix) => lower.startsWith(prefix))) {
    return trimmed;
  }
  const visibleReplyLeak = extractQaVisibleReplyLeakText(trimmed);
  if (visibleReplyLeak) {
    return visibleReplyLeak;
  }
  if (TOOL_BACKED_FAILURE_PATTERNS.some((pattern) => pattern.test(trimmed))) {
    return trimmed;
  }
  return undefined;
}

¤ Dauer der Verarbeitung: 0.29 Sekunden  (vorverarbeitet am  2026-04-27) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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.