Mistral Medium 3 vs Gemini 3.1 Pro Preview
Compare Mistral Medium 3 by Mistral AI against Gemini 3.1 Pro Preview by Google AI, context windows of 131K vs 1.0M, tested across 26 shared challenges. Updated February 2026.
Compare Mistral Medium 3 by Mistral AI against Gemini 3.1 Pro Preview by Google AI, context windows of 131K vs 1.0M, tested across 26 shared challenges. Updated February 2026.
26 challenges
Tests an AI's randomness and creativity
Here are 5 jokes:
How many are unique? Within this list, all 5 are unique from one another (there are no duplicates). However, if you mean "unique" as in completely original to the world, the answer is 0—these are all classic, well-known "dad jokes" that have been around for a long time!
Tests an AI's ability to generate vector graphics
Tests an AI's ability to create detailed SVG illustrations of gaming hardware
Tests an AI's humor and creative writing ability
(Walks up to the microphone, adjusts the mic stand, takes a deep breath)
Hey everyone.
I realized recently that I am my own worst enemy. Specifically, when I go to the grocery store.
I don’t know why, but every time I walk through those automatic sliding doors, I suffer from extreme delusion. I walk in saying, "I just need milk." So, I don’t take a shopping cart. I don't even take one of those little hand baskets. Taking a basket is an admission of weakness. I am a grown adult; I can carry a gallon of milk.
Ten minutes later, I am wandering aisle four, sweating, cradling three jars of salsa, a family-sized bag of tortilla chips, a bottle of bleach, and a hot rotisserie chicken. (Mimics awkwardly holding a massive pile of items against his chest). I’m walking through the store looking like I’m rescuing a family of very odd-shaped babies from a burning building. If I drop an onion, it’s gone. It belongs to the store now. I physically cannot bend down to get it without causing a landslide of dairy and poultry.
And then, you finally make it to the front, and you have to face the ultimate test of human patience: The Self-Checkout.
Who designed these things? It’s the only place on earth where you do the company's job for them, for free, and the machine still treats you like you’re pulling off a casino heist.
You scan your first item. Beep. You place it gently in the bag.
(Loud, robotic voice): "UNEXPECTED ITEM IN BAGGING AREA."
It’s a tomato! I just scanned it! The machine literally just acknowledged it! What did it think I was going to put in the bag? A live badger? I’m not trying to launder produce!
So immediately, the giant red light starts flashing above your register. The Siren of Shame. Everyone else in line is looking at you like, "Look at this criminal mastermind trying to steal a single Roma tomato."
Now you have to wait for the one employee who is guarding twelve registers. It’s always a 19-year-old named Tyler. Tyler ambles over, sighs heavily, and types his highly secure, secret nuclear launch code into the screen—which is just 1-1-1-1. He clears the error and looks at you with a mix of pity and absolute disgust.
"You put the bag down too hard, man."
Oh, I'm sorry Tyler. My apologies. I didn't realize I was handling weapons-grade cilantro. I'll be more careful next time I disarm the vegetables.
And the worst part? The absolute worst part is leaving. You paid. You have the receipt. The transaction is legally complete. But there is always that guy standing at the exit doors with a yellow highlighter.
Suddenly, even though I have done absolutely nothing wrong, I forget how to walk like a normal human being. I start walking like a cartoon burglar. (Does an exaggerated, stiff-legged, suspicious walk). I hold the receipt up to my forehead like a search warrant. "Just a guy with his groceries! Nothing to see here, officer!"
Why do I feel guilty? I literally just paid eighteen dollars for cheese, but I’m sweating like I’m smuggling it out in my socks.
Next time, I'm just starving. It's less stressful.
Thank you guys so much, you've been great! Have a good night!
Tests an AI's ability to simulate personalities and predict future trends
Tests an AI's humor and understanding of current events
Tests an AI's ability to generate a complete, working landing page
Recreate an interactive, nostalgic Pokémon battle UI in a single HTML file.
Recreate an interactive, classic Mario level in a single HTML file.
Couldn't render this response
This model didn't return a displayable web page for this challenge.
# Super Mario Bros. Interactive Level
Here's a self-contained HTML page that recreates a classic Super Mario Bros. level with interactive elements. It includes Mario's movement, jumping, coin collection, enemy interactions, and a simple physics system.
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Super Mario Bros. Level</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #6b8cff;
font-family: 'Press Start 2P', cursive;
user-select: none;
}
#game-container {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}
#game-canvas {
background-color: #6b8cff;
display: block;
}
#hud {
position: absolute;
top: 10px;
left: 10px;
color: white;
font-size: 16px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
background-color: rgba(0, 0, 0, 0.3);
padding: 5px 10px;
border-radius: 5px;
}
#start-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
z-index: 10;
}
#start-screen h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}
#start-screen p {
font-size: 20px;
margin-bottom: 30px;
}
#start-button {
padding: 10px 20px;
font-size: 20px;
background-color: #ff0000;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
transition: transform 0.2s;
}
#start-button:hover {
transform: scale(1.05);
}
#game-over-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
z-index: 10;
}
#game-over-screen h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}
#game-over-screen p {
font-size: 20px;
margin-bottom: 30px;
}
#restart-button {
padding: 10px 20px;
font-size: 20px;
background-color: #ff0000;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
transition: transform 0.2s;
}
#restart-button:hover {
transform: scale(1.05);
}
#win-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
z-index: 10;
}
#win-screen h1 {
font-size: 48px;Tests an AI's ability to create interactive web elements
Tests an AI's ability to create a detailed world map in SVG format
Generate a single-page, self-contained HTML webapp using Tailwind CSS for a randomly chosen category/industry/niche.