🎄 Mongoose Studio Advent Calendar Day 6! 🎁
Every day from Dec 1 → Dec 25, I’m shipping a new Mongoose Studio feature or improvement… all leading up to a big v1.0.0 release.
Google Gemini Model Support
Talk to Gemini in Mongoose Studio!
We're excited to announce that Mongoose Studio now supports Google Gemini, alongside OpenAI and Anthropic. Simply add your Gemini API key, and you can chat with the latest Gemini model using Studio’s chat UI and codegen tools.
Want ultimate flexibility? Mongoose Studio now automatically detects whether you've provided an OpenAI, Anthropic, or Gemini API key—just provide one and get instant access to your favorite LLM ecosystem.
app.use('/studio', await studio(
null,
mongoose,
{
//model: 'gemini-2.5-flash',
googleGeminiAPIKey: 'AI000'
// openAIAPIKey: 'sk-proj-111',
// anthropicAPIKey: 'sk-ant-222'
})
);