Hey
I can do it for vercel ai sdk + groq with the following code:
createGroq({
apiKey,
baseURL: "https://groq.helicone.ai/openai/v1",
headers: {
"Helicone-Auth": `Bearer ${process.env.PLASMO_PUBLIC_HELICONE_API_KEY}`,
},
});
so, my questions are:
- is it possible to do the similar thing for vercel ai sdk + gemini.
- if yes, then what's the
baseURL
for gemini?
thanks