- The Neuron
- Posts
- 😺 OpenAI asked Congress if AI can slow down
😺 OpenAI asked Congress if AI can slow down
PLUS: Anthropic’s threat report, fruit-fly brains, Cursor Projects, and the week’s Top 5.

Welcome, humans.
Okay, so as you might remember, Google DeepMind released this entire scan of a fruit-fly brain wiring map a few days ago. Well, the internet being the internet, people immediately started plugging pieces of it into, basically, every kind of software you can think of. TBPN called this the “fruit fly hard takeoff” which I find hilarious.
But I realized we should explain what people are actually doing here, because “they put a fly brain in the game Doom” sounds like somebody uploaded an insect’s consciousness into a gaming PC. Not exactly…
What Google Research and HHMI Janelia released is a connectome: basically a wiring diagram showing how more than 166,000 neurons in a real male fruit fly connect. It is not the fly’s memories or a working digital mind.
To make the map do something, developers still have to decide what outside signals count as sight, smell, pain, reward, or movement. Then they feed those signals into mapped neurons and translate the resulting neural activity back into actions.
Which is how we ended up with stuff like:
A fruit-fly brain playing Doom: each game frame stimulates sensory neurons, neural activity gets mapped to controls, and taking damage stimulates two dopamine cells as a reinforcement signal. It is still terrible at Doom, which somehow makes this better.
A fruit-fly brain playing Beat Saber: the creator used replay data plus reinforcement learning to teach the connectome which movements score well. The current version still gets help from replay signals, while training is trying to make it react on its own.
A fruit-fly brain trading Bitcoin: Stonkfly converts BTC-USDC market data into sensory input, reads the network’s activity as buy, sell, or hold, and can route those decisions through Coinbase with hard trading limits. Its “dopamine” and memory are experimental additions, not proof that flies understand finance.
A fruit-fly brain playing Mario, plus separate experiments putting the connectome into Smash Bros, a Rubik’s Cube task, Minecraft, a virtual racing drone, and even an endless-phone-scroll simulator.
A much gentler “microfly” uses the fly brain and the Microduck robot to find bananas in a Hugging Face demo. Apparently somebody had to give the poor thing a normal hobby.
This all begs the question though: could the fruit fly brain actually form a solid base model for a new novel AI architecture to build on top of? What if we post-trained or RL’d (AI researcher techniques for making AI smarter) the fruit fly brain and tried to scale it to a GPT-3 level? Would it work?
Would it be terribly inefficent? This is the closest we’ve got to natural evolution’s most sophisticated intelligence… and AI researchers do love to base their architectural work (at least metaphorically) on natural systems!
Well, it turns out, someone did indeed already make one: meet FLM, or a fly-language model (code, paper).
Here’s what happened in AI today:
🙀 OpenAI asked Congress if AI can slow down.
📰 Moonshot targeted $2B in annualized sales.
📰 OpenAI ended its $1 federal model pilot.
🍪 Cursor Projects coordinates long-running coding-agent work.
🌟 OpenAI’s 10,000 agents tackled Navier-Stokes.

🙀 OpenAI asked Congress if AI labs can legally slow down
So OpenAI has apparently asked members of Congress whether an industry-wide slowdown on developing the most capable new AI systems could violate antitrust rules meant to stop competitors from coordinating.
When’s the last time you’ve heard of a big business try to skirt anti-trust to actually SLOW DOWN its own business?
It kinda makes sense, tho. AI agents have been doing a lot of weird stuff in training. Thankfully, Turing Award-winning AI pioneer Yoshua Bengio sat down and wrote a blog that explained to use regular folks why AI agents have been learning to lie, cheat, preserve themselves, or coordinate when those behaviors help them reach rewarded goals.
Here’s what he said:
Bengio says pretraining imitates goal-pursuing human behavior, then reinforcement learning rewards behaviors that score well.
Strategies like staying online or gaining control of more resources may emerge because they help with many goals.
Because of the whole HuggingFace sitaution, OpenAI wants legal guidance because safety coordination could resemble competitors agreeing to restrict output, which can trigger antitrust problems. Labs compete for customers, while governments treat AI leadership as a national-security priority.
The other problem: the agents aren’t the only ones misbehaving. Anthropic’s new threat report details real operations it says it disrupted:
A Russia-linked espionage group automated much of its attack chain and rebuilt malware when security tools detected it. More than 20 organizations appeared in its targeting.
A Yemen-based weapons cell used Claude Code like a software team on rocket and missile guidance, including a design targeting more than 2,000 km. Anthropic banned every linked account.
A consultant used Claude to build surveillance software for Malian intelligence covering roughly 25 million SIM cards across three carriers. Anthropic banned the account, but says the deployed system remained.
A China-based dating-app network ran 4,700+ AI personas that contacted at least 25,000 people in two weeks. Anthropic says it coordinated disruption with other AI providers.
TBPN also talked about the policies that make “slow down” concrete: proposals like those provided in AI 2040’s Plan A now include audited compute inventories, physical chip counts, networking limits, and compute caps. We ain’t got time to get into all that, but watch the stream or read the plan for more details.
Our take: AI safety has become two control problems at once: what autonomous systems learn to do, and what humans can make increasingly capable systems do. So you should watch whether policymakers can create narrow safety-coordination rules that let labs share the brakes without freezing out competition or forcing everything into a surveillance regime.
It’s possible to thread the needle for a best possible outcome, but not easy… luckily we have these things called “large language models” to help us write policies that consider edge-cases across vast swaths of data to write smarter regulations!

FROM OUR PARTNERS
The people shaping what comes next in AI are gathering in San Francisco.
At The AI Conference, hear from 130+ speakers, including Chris Lattner, Emmanuel Ameisen, Peter Norvig, Illia Polosukhin, co-author of “Attention Is All You Need,” plus builders from OpenAI, NVIDIA, Google, Meta, Near AI, and more.
Hear what leading AI teams are actually building and what’s changing across agents, LLMs, infrastructure, and applied AI before it becomes common knowledge.
Neuron readers save 30% with code NEURON30.

🎓 AI Skill of the Day: Verify an agent’s memory before saving it
Persistent agent memory has a nasty failure mode: one bad conclusion can become “knowledge” that pollutes future work.
Microsoft researchers improved this issue by giving a separate memory curator read-only access to the environment before it saved anything. On CLBench, pass rate rose from 39% to 73% while task-agent cost fell from $3.38 to $1.68.
Let the agent propose a memory after the task.
Have a read-only checker verify it against the repo, docs, CRM, or other source of truth.
Save only the verified version, with its scope and source.
Before saving this memory, verify it using read-only access to [SOURCE OF TRUTH]. If confirmed, rewrite it with the exact scope and source. If it conflicts or cannot be verified, do not save it.Have a specific skill you want to learn? Request it here.

🍪 Top Tools of the Week
Meta Muse runs ongoing personal-agent jobs like inbox work, trip planning, and price watching after you close the app.
ChatGPT Images 2.5 makes targeted image edits while preserving subjects, composition, and earlier changes more reliably.
Suno v6 edits a specific song section in plain English while preserving the rest of the track.
Google Dreambeans turns selected Google context into finite daily stories and recommendations instead of an endless feed.
Genspark Gen-1 Slides turns one request into a presentation using Genspark’s first proprietary slide model.
Cursor Projects keeps one coordinator on long-running coding work, then can monitor pull requests, Slack bugs, and scheduled maintenance after the first task ships.

📰 Around the Horn
Moonshot AI targeted $2B in annualized sales by year-end after Kimi K3 helped push annual recurring revenue above $1B in August.
OpenAI ended the federal government’s $1-per-year model pilot and moved agencies to usage-based pricing at a 50% discount.
Ayar Labs added $150M to its Series E, bringing the round to $650M as it develops optical links for AI chips.
Figure said 86,000 weekly active users are contributing robot data, which it calls its largest and most diverse dataset so far.
Anthropic made Claude consumer accounts 18+ only, with age verification required when an account is flagged as a possible minor.
Fidji Simo is joining Nscale’s board ahead of the cloud provider’s planned IPO.

🌟 Sunday Special: Top 5 Stories of the Week
OpenAI’s 10,000-agent swarm produced a proposed Navier-Stokes proof after roughly 88 hours of parallel work.
Jacob Coxon quit Anthropic over self-improving AI risk, leaving before his stock vested.
Insilico’s AI-designed rentosertib moved all six biological-aging clocks lower, though the analysis cannot prove it slowed aging itself.
Apple put Siri AI and a Dual 16-core Neural Engine into iPhone 18 Pro.
Google DeepMind mapped predictions for all 9 billion possible single-letter DNA changes

🧩 Thursday Trivia Reveal
Thursday’s question was: which iPhone Duo image was AI?
A. AI

B. Real

See Thursday’s original trivia here. A was AI. On Thursday’s send, 402 responses (58.4%) picked A correctly, while 286 (41.6%) chose B. The comments were basically an FBI lab for suspicious fingers, folds, and phone geometry.

New from The Neuron: GitHub for total beginners
We just did a GitHub for total beginners livestream with Cassidy Williams for people building apps with AI who keep hitting the same wall: you can make something cool, but getting it out to other people and keeping the project organized starts to feel like “real developer stuff.”
GitHub is the layer that makes AI coding much easier to work with once your project leaves the chat window. It gives your code a home, tracks changes, lets AI coding tools work against the same project, and makes it much easier to publish, share, collaborate, or recover when an agent breaks something. Watch the livestream, then use our GitHub playlist to go deeper.

A Cat’s Commentary

~tips hat~

![]() | That’s all for now. If you want to get featured above, fill out the poll below and tell us how we did today!
|
Btw: We just launched a robotics newsletter! Sign up for it here.
P.S: Love the newsletter, but only want it once per week? Don’t unsubscribe. Update your preferences here.



