open-learning-exchange/planet

View on GitHub
chatapi/src/config/gemini.config.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { GoogleGenerativeAI } from '@google/generative-ai';
import dotenv from 'dotenv';

dotenv.config();

const gemini = new GoogleGenerativeAI(process.env.GEMINI_API_KEY || '');

export default gemini;