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 -

68 views

Add a comment

Replies

Best
Shawn Idrees

thinking mode + cross-provider memory makes experimenting with different models way more fun and effecient