Files
openclaw/extensions/google/google-genai-runtime.ts
2026-04-23 23:48:04 +01:00

9 lines
313 B
TypeScript

import { GoogleGenAI } from "@google/genai";
export type GoogleGenAIClient = InstanceType<typeof GoogleGenAI>;
export type GoogleGenAIOptions = ConstructorParameters<typeof GoogleGenAI>[0];
export function createGoogleGenAI(options: GoogleGenAIOptions): GoogleGenAIClient {
return new GoogleGenAI(options);
}