VOOZH about

URL: https://thenewstack.io/mistral-vibe-cloud-agents/

⇱ Mistral, Europe’s answer to OpenAI and Anthropic, pushes its coding agents to the cloud - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2026-05-01 10:46:14
Mistral, Europe’s answer to OpenAI and Anthropic, pushes its coding agents to the cloud
AI / AI Agents / AI Infrastructure / Open Source / Software Development

Mistral, Europe’s answer to OpenAI and Anthropic, pushes its coding agents to the cloud

Paris-based AI startup pushes its Vibe coding agent into the cloud, launches a new model, and keeps the heat on the major AI labs.
May 1st, 2026 10:46am by Paul Sawers
👁 Featued image for: Mistral, Europe’s answer to OpenAI and Anthropic, pushes its coding agents to the cloud
HJ Project for Unsplash+

Countless companies are capitalizing on the AI boom, building everything from coding assistants to customer support bots. But only a handful are building the foundational AI models themselves — the underlying systems that power it all.

That group is dominated largely by OpenAI, Anthropic, and Google, with the likes of Mistral AI sitting just outside that elite circle. Founded out of Paris in 2023, Mistral has raised billions from a who’s who of investors, including Microsoft and Nvidia, all while pushing a more open approach — releasing open-weight models and giving developers more control over how they run them.

On Wednesday, Mistral debuted a new model, Mistral Medium 3.5, alongside a system that lets its coding agents run in the cloud.

Now, the company is edging toward the same territory as some of its larger rivals. On Wednesday, Mistral debuted a new model, Mistral Medium 3.5, alongside a system that lets its coding agents run in the cloud, where they can keep working in the background while developers get on with other things.

Additionally, Mistral is adding a “work mode” to Le Chat, its ChatGPT-style interface, that can take on longer jobs by calling tools in parallel, as it looks to move beyond chat and into doing actual work.

Teleport to the cloud

Mistral’s coding assistant, Vibe, has until now mostly lived in the terminal, where developers could ask it to read a repo, edit files, run commands, fix bugs, or write tests from the command line. With this update, Mistral is pushing it into a different mode — one where you can spin up multiple agents in the cloud, let them work through tasks independently in isolated sandboxed environments, and come back to review what they’ve done.

Sessions can be started locally from the CLI or Le Chat and “teleported” to the cloud mid-task, preserving the full context — including the task itself, previous steps, and any changes made so far. From there, the agents continue running remotely, without being tied to the developer’s machine.

👁 Teleport to the cloud
Teleport to the cloud

So instead of sitting in a loop, prompting and checking results, developers can hand off chunks of work and allow them to run in the background. Those tasks might include writing new features, updating code, or preparing changes as draft pull requests for later review.

Users can also launch Vibe directly from Le Chat. For example, they could ask it to build a sales dashboard, and it would run the task in a remote setup before returning a finished branch or a draft pull request.

👁 Launching Vibe from Le Chat
Launching Vibe from Le Chat

On top of that, Mistral is adding a “work mode” within Le Chat, where users can set broader tasks — like pulling together a meeting brief or updating documents — and have the system work through them using connected tools.

👁 Work Mode
Work Mode

Pini Wietchner, who works on the Mistral product team, says in an online discussion that the company has been dogfooding Vibe internally for its latest launch, with most of its pull requests handled remotely.

“We’ve seen internally that Vibe has been really effective,” Wietchner says during that company-produced YouTube video. “Our customers want to use agents both locally and remotely. A local agent is great for a developer working in their IDE or terminal on a coding task. Remote agents let them run multiple agents in parallel, in a secure way using our sandboxing setup.”

“Our customers want to use agents both locally and remotely. A local agent is great for a developer working in their IDE or terminal on a coding task. Remote agents let them run multiple agents in parallel.”

Model behavior

Underpinning all this is Mistral Medium 3.5, a 128B parameter model with a 256k context window, designed to handle longer, more involved tasks rather than quick prompts.

Mistral is positioning Medium 3.5 against models already used for similar workloads — including Claude Sonnet, Kimi K2.5, GLM 5.1, and Qwen 3.5, as shown in its reported results. On standard tests like SWE-bench Verified, which measures how well models can resolve real GitHub issues, the company reports competitive scores, alongside results on domain-specific tasks in telecom, retail, and banking. These figures come from Mistral’s own evaluations and may vary under different setups or conditions.

👁 Agentic benchmarks vs. competing models
Agentic benchmarks vs. competing models

For those all-in on Mistral’s stack, a more relevant comparison, perhaps, is against its own earlier models. By that measure, Medium 3.5 marks a step up from previous coding-focused releases such as Devstral 2, according to the company’s reported Swe-Bench Verified results.

👁 Agentic benchmarks vs. previous Mistral models
Agentic benchmarks vs. previous Mistral models

Building out the pieces

Mistral has been building toward this almost since its inception. In 2024, the company released Codestral, its first dedicated coding model, focused on everyday developer tasks like code completion and generation. More recently, it followed up with Leanstral, which tackled a more difficult problem — using formal verification to check whether code is actually correct.

So rather than jumping straight to fully autonomous agents, Mistral has been building out the pieces: models that can write code, models that can check it, and now a system that tries to run that work in the background.

It’s also where the company starts to overlap more directly with bigger rivals. Anthropic, for example, has been pushing similar ideas with Claude Code, including tools that let developers run longer coding tasks and keep them going across sessions, whether in the browser, on mobile, or via remote access to a local environment.

What sets Mistral apart is how it’s packaging those ideas. Its models are typically released with open weights, and now tools like Vibe can run locally or in the cloud, giving developers more control over their use.

That doesn’t guarantee it will win out — far from it. But it does give Mistral something of a unique angle — especially in Europe, where Mistral has positioned itself as a homegrown alternative to the dominant US labs.

What is seemingly consistent across the board, however, is a growing desire to turn AI from something you have to keep steering into something that can handle chunks of work on its own.

TRENDING STORIES
Paul is an experienced technology journalist covering some of the biggest stories from Europe and beyond, most recently at TechCrunch where he covered startups, enterprise, Big Tech, infrastructure, open source, AI, regulation, and more. Based in London, these days Paul...
Read more from Paul Sawers
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Teleport, Anthropic, OpenAI.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.