AudioABTestPlatform / src /ai /ai-instance.ts
TimLukaHorstmann
Push app
8c85576
raw
history blame contribute delete
262 Bytes
import {genkit} from 'genkit';
import {googleAI} from '@genkit-ai/googleai';
export const ai = genkit({
promptDir: './prompts',
plugins: [
googleAI({
apiKey: process.env.GOOGLE_GENAI_API_KEY,
}),
],
model: 'googleai/gemini-2.0-flash',
});