You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned earlier, the issue seems to be with require. You should be able to use Google on Edge Functions. I've provided a simple example below:
import"jsr:@supabase/functions-js/edge-runtime.d.ts";import{GoogleGenAI}from"npm:@google/genai";constai=newGoogleGenAI({apiKey: "YOUR_API_KEY",});Deno.serve(async()=>{constresponse=awaitai.models.generateContent({model: "gemini-2.0-flash",contents: "Explain how AI works in a few words",});constdata={message: `AI said "${response.text}!"`,};returnnewResponse(JSON.stringify(data),{headers: {"Content-Type": "application/json"}},);});
This issue should be safe to close as it is not a bug with supabase/supabase-js
Bug report
Describe the bug
I can't import the Google library into my Deno edge function:
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
Try importing in any Supabase edge function.
Expected behavior
It should import fine.
System information
The text was updated successfully, but these errors were encountered: