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