mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 13:44:58 +00:00
8 lines
241 B
TypeScript
8 lines
241 B
TypeScript
import { sanitizeGoogleTurnOrdering } from "./bootstrap.js";
|
|
|
|
export function isGoogleModelApi(api?: string | null): boolean {
|
|
return api === "google-gemini-cli" || api === "google-generative-ai";
|
|
}
|
|
|
|
export { sanitizeGoogleTurnOrdering };
|