π New Provider: Google Gemini Support is Live!
@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 yesterdayWhat'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.jsWatch memories flow between OpenAI β Claude β Gemini.
Very excited to bring these models to our users -



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