Files
openclaw/src/shared/google-models.ts
2026-04-27 08:26:28 +01:00

7 lines
270 B
TypeScript

import { normalizeLowercaseStringOrEmpty } from "./string-coerce.js";
export function isGemma4ModelId(modelId?: string | null): boolean {
const normalized = normalizeLowercaseStringOrEmpty(modelId);
return /(?:^|[/_:-])gemma[-_]?4(?:$|[/_.:-])/.test(normalized);
}