mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-22 07:48:12 +00:00
Adds broad inline comments and JSDoc for CLI, cron, outbound/channel, plugin SDK, ACP, shared helpers, net policy, and related utility contracts. Proof: git diff --check on latest exact head plus focused cron tests passed; CI had no failing checks observed before merge attempt.
23 lines
730 B
TypeScript
23 lines
730 B
TypeScript
import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";
|
|
|
|
/** Infers the largest `<number>b` parameter-size token from a model id or display name. */
|
|
export function inferParamBFromIdOrName(text: string): number | null {
|
|
const raw = normalizeLowercaseStringOrEmpty(text);
|
|
const matches = raw.matchAll(/(?:^|[^a-z0-9])[a-z]?(\d+(?:\.\d+)?)b(?:[^a-z0-9]|$)/g);
|
|
let best: number | null = null;
|
|
for (const match of matches) {
|
|
const numRaw = match[1];
|
|
if (!numRaw) {
|
|
continue;
|
|
}
|
|
const value = Number(numRaw);
|
|
if (!Number.isFinite(value) || value <= 0) {
|
|
continue;
|
|
}
|
|
if (best === null || value > best) {
|
|
best = value;
|
|
}
|
|
}
|
|
return best;
|
|
}
|