š 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