gemini-api
Installation
SKILL.md
Gemini API Patterns
SDK Setup
Use the @google/genai package with Expo Constants for API key management:
import { GoogleGenAI } from '@google/genai';
import Constants from 'expo-constants';
const genAI = new GoogleGenAI({
apiKey: Constants.expoConfig?.extra?.geminiApiKey as string
});