UNPKG

@r-huijts/ethics-vibe-check

Version:

🛡️ Make AI interrupt itself and challenge your thinking. Turns Claude into a philosophical sparring partner who actively contradicts comfortable conversations and challenges confirmation bias.

9 lines (8 loc) 455 B
export declare function initializeGemini(apiKey: string): void; export declare function getGeminiModel(): import("@google/generative-ai").GenerativeModel; /** * Clean Gemini response by removing markdown code block formatting * Gemini 2.0-flash often wraps JSON responses in ```json``` blocks */ export declare function cleanGeminiJsonResponse(response: string): string; export declare function generateEthicsResponse(prompt: string): Promise<string>;