marius ndini

šŸš€ New Provider: Google Gemini Support is Live!

by•

@Mnexium AI Now supports all three major AI providers!

āœ… OpenAI ChatGPT models

āœ… Anthropic Claude Models

āœ… Google Gemini Models ← NEW

Why this matters:

Your users can now seamlessly switch between providers while keeping their memory and context intact.

Learn something with GPT-4 → Recall it with Gemini → Continue with Claude.

Same user. Same memories. Any model.

How it works:

Just use the native Google SDK and point it to Mnexium:

import { GoogleGenAI } from "@google/genai";

const client = new GoogleGenAI({
  apiKey: GEMINI_KEY,
  httpOptions: {
    baseUrl: "https://mnexium.com",
    headers: { "Authorization": `Bearer ${MNX_KEY}` },
  },
});

const response = await client.models.generateContent({
  model: "gemini-2.0-flash-lite",
  contents: "What's my favorite color?",
});
// Gemini knows - because GPT-4 learned it yesterday

What's supported:

āœ… Streaming & non-streaming

āœ… Tool/function calling

āœ… System instructions

āœ… Thinking mode

āœ… Memory learn & recall

āœ… Chat history

āœ… Cross-provider memory sharing

Mnexium remembers everything across all of them.

Try it:

git clone https://github.com/mariusndini/m...
cd examples/Cross-provider
npm install
node run-all.js

Watch memories flow between OpenAI → Claude → Gemini.

Very excited to bring these models to our users -

70 views

Add a comment

Replies

Be the first to comment