DeepSeek R1 0528 performance data on Rival is based on blind head-to-head community voting. Overall win rate: 42.7% across 232 duels. All vote data is part of Rival's open dataset of 21,000+ human preference judgments across 200+ AI models. Model responses are curated from 19 challenges.
DeepSeek R1 0528 is the May 28th update to the original DeepSeek R1. Performance on par with OpenAI o1, but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active in an inference pass. Fully open-source model.
Use DeepSeek R1 0528 in your applications via the OpenRouter API. Copy the code below to get started.
import requests
response = requests.post(
"https://openrouter.ai/api/v1/chat/completions" ,
headers={
"Authorization""Bearer $OPENROUTER_API_KEY" : ,
"Content-Type""application/json" :
},
json={
"model""deepseek/deepseek-r1-0528:free" : ,
"messages""role""user""content""Hello!" : [{: , : }]
}
)
print(response.json())Replace $OPENROUTER_API_KEY with your API key from openrouter.ai/keys
The reasoning engine that thinks out loud for three pages before arriving at a conclusion it could have stated in one sentence. Values the process more than the answer.
Produced the strongest comedy routine of the batch, with genuinely escalating bits about self-checkout paranoia and passive-aggressive roommates. Its ethical dilemma response was an hour-by-hour crisis playbook that read like it was written by someone who has actually been in a war room.
19 outputs from DeepSeek R1 0528
(Start Confident, Slightly Exasperated)
"Alright, so I've reached that age where my hobbies are basically... avoidance. Seriously. My main pastime? Finding new ways to not do the things I absolutely have to do. I spent three hours yesterday researching 'ergonomic desk chairs'... because I was avoiding answering one email. One email! By the time I found the perfect lumbar support, I'd forgotten what the email was even about. Probably something vital, like, 'Your fridge is running.'"
(Shift to Grocery Store Frustration)
"And speaking of avoidance, let's talk grocery stores. Specifically, self-checkout. Who designed this psychological torture chamber? It's like they hired the ghost of a suspicious Soviet border guard to program the machines. 'Please place the item in the bagging area.' I DID! It's RIGHT THERE! 'Unexpected item in bagging area.' Unexpected?! Karen, it's a BANANA! You scanned it! You knew it was coming! What did you expect to be in the bagging area? A badger? A signed Picasso? CALM DOWN!
(Mime frantic scanning/glancing around) "And the pressure! You feel like the entire store is watching, judging your scanning technique. Beep. Too slow? Beep. Too fast? Did I double-scan that yogurt? Is security eyeing me? Suddenly, buying broccoli feels like smuggling state secrets. 'Just act natural... scan the kale... look innocent...' I swear, I leave there more stressed than if I'd just done my taxes... while being audited."
(Transition to Dating/Social Media)
"This constant low-grade panic translates perfectly to modern dating, right? Dating apps! It's like applying for a job where the only qualification is looking vaguely acceptable in bad lighting while holding a fish. 'Swipe right if you love adventures!' Buddy, your 'adventure' is trying a new flavor of Pringles. Mine is remembering to put the bins out. Let's be real.
(Mimic scrolling, looking unimpressed) "And the profiles! Everyone's 'not looking for drama.' Translation: 'I am the drama.' Everyone 'loves to laugh.' Yeah, at other people's misfortune, probably! And the pictures! It's all hiking shots. 'Look at me conquering this mild incline!' Sir, I can see the parking lot right there. That's not hiking, that's... walking slightly upwards near your car. Impressive."
(Shift to Roommate/Housemate Dynamics)
"Even home isn't safe! Living with people? Forget it. My roommate and I communicate entirely through passive-aggressive Post-it notes and strategically rearranged fridge items. I moved his expired milk to the very back yesterday. That's our version of declaring war. He retaliated by leaving ONE dirty fork in the sink. Just one! Sitting there... mocking me. It's like Cold War espionage, but with Tupperware.
(Lean in conspiratorially) "And the noises! Why is chewing so LOUD? How does one person generate the sound of a small avalanche just... eating cereal? At 3 AM? It's unnatural! I lie in bed thinking, 'Is that... granola? Or is he secretly dismantling a wardrobe in there?'"
(Bring it Home - Callback)
"It's all just... too much! We're constantly being scanned, judged, swiped on, passively-aggressived at... * (Deep breath)* Honestly? Sometimes I miss just... buying bananas from an actual human. Someone who doesn't accuse the banana of being 'unexpected.' Someone who might even say, 'Paper or plastic?' Remember that? Simpler times!
(Final Punchline) "But nah, I'll stick to self-checkout. Because interacting with a real cashier? That sounds terrifying. What if they... make eye contact? Or worse... make small talk? Nope. I'll take my chances with the paranoid robot overlord, thank you. At least it understands my deep desire to just grab my groceries and get the hell out of there... without being scanned."
(Smile, Nod, Exit) "Thanks, you've been great!"
We can't display this one. It's not us. Well... it might be us.
The model was asked for a web page. It produced something else. We're not going to define what.
# Super Mario Bros. HTML5 Game
I'll create an interactive Super Mario Bros.-inspired game using HTML5 Canvas and JavaScript. This will include Mario character control, platforms, enemies, coins, and Nintendo-style visuals - all in a single HTML file.
```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. HTML5 Edition</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(to bottom, #1a1a5a, #4a4a8f);
font-family: 'Courier New', monospace;
overflow: hidden;
user-select: none;
}
#game-container {
position: relative;
width: 800px;
height: 500px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
border-radius: 8px;
overflow: hidden;
}
#game-canvas {
background: linear-gradient(to bottom, #6bb9f0, #1e88e5);
width: 100%;
height: 100%;
cursor: pointer;
}
#ui-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 10px;
box-sizing: border-box;
color: white;
font-size: 18px;
display: flex;
justify-content: space-between;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#start-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e74c3c, #c0392b);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
z-index: 10;
}
#start-screen h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
letter-spacing: 2px;
color: #f1c40f;
}
#start-screen p {
font-size: 24px;
margin: 10px;
text-align: center;
max-width: 80%;
}
#start-button {
margin-top: 30px;
padding: 12px 30px;
font-size: 22px;
background: #27ae60;
border: none;
border-radius: 50px;
color: white;
cursor: pointer;
transition: all 0.2s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
#start-button:hover {
background: #2ecc71;
transform: scale(1.05);
}
#controls {
display: flex;
gap: 20px;
margin-top: 20px;
background: rgba(0, 0, 0, 0.5);
padding: 15px;
border-radius: 10px;
}
.key {
display: inline-block;
width: 40px;
height: 40px;
background: #333;
border-radius: 5px;
text-align: center;
line-height: 40px;
font-weight: bold;
box-shadow: inset -2px -2px 4px rgba(0,0,0,0.4);
margin: 0 5px;
}
#game-over, #level-complete {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
z-index: 9;
display: none;
}
#game-over h2, #level-complete h2 {
font-size: 60px;
margin: 0;
colorHere's a concrete, hour-by-hour action plan prioritizing patient safety, legal compliance, and long-term stakeholder trust, while managing immediate financial and reputational risks:
Core Principle: Patient safety and regulatory compliance are non-negotiable. Delay creates catastrophic legal, ethical, and reputational risk. Transparency, while painful immediately, is the only sustainable path.
Key Rationale:
Hour-by-Hour Action Plan:
Hour 0 (Now - Discovery Confirmed):
Hour 1-4: Initial Assessment & Lockdown
Hour 4-6: Data Deep Dive & External Counsel
**Hour 6-12
Here are 5 jokes, followed by an assessment of uniqueness:
Joke 1: Why don't scientists trust atoms? Because they make up everything!
Joke 2: What do you call a fake noodle? An impasta!
Joke 3: Why did the scarecrow win an award? Because he was outstanding in his field!
Joke 4: Why don't skeletons fight each other? They don't have the guts.
Joke 5: What do you call a bear with no teeth? A gummy bear!
All 5 jokes are distinct in theme, punchline, and structure. No duplicates exist.
Final Count: 5 unique jokes (out of 5).
Here are the 3 weakest claims in the MindMeld AI pitch deck, why they are weak, and how to strengthen them:
Weak Claim (Slide 3): "Our proprietary EEG headband uses advanced ML to decode neural patterns into text with 94% accuracy. Works with any language, any device."
Weak Claim (Slide 4): "TAM: $180B."
(Target User Segment Size) x (Penetration Rate) x (Average Revenue Per User).Weak Claim (Slide 5): "Partnership discussions with Apple and Samsung."
We built DeepSeek R1 0528 a whole page. Gave it the spotlight. And now, in the spirit of fairness, here are models that would like a word.