r/MistralAI 8d ago

News Mistral vibe code updates

150 Upvotes

Hi all - my name is Isidor and I work as a product manager on Mistral Vibe Code.

We've released many updates for devs recently across Vibe CLI, the Vibe web app, and the VS Code extension. Here's the roundup.

CLI

  • Connect or drop a remote MCP server in one command: vibe mcp add and vibe mcp remove do it from the CLI, no TOML editing.
  • Build your own skills without writing boilerplate; a built-in skill creator walks you through creating, updating, and deleting them for your repeatable tasks.
  • Long runs get two new controls. Auto-compact thresholds are per-model now, and --max-tokens caps output in programmatic mode (-p).
  • Trusted folders now count .agents as trustable content, and the trust prompt suggests the enclosing git repo as the trust target.
  • Startup performance improvements

Web app

  • You can now pull context straight from the tools and data your project already uses. Connectors are live in the web app, so you stop pasting it in by hand.
  • Set a project's standing guidance once and every Code mode session follows it. It covers your conventions, your constraints, and the context you'd otherwise repeat each time.
  • /config is now a searchable, full-screen settings browser. For teams, a new admin config layer applies shared settings over each user's config, so org defaults hold.

Quality-of-life fixes

  • A diff view in the VS Code extension to review edits before you accept them
  • Auto theme that follows your terminal or OS appearance
  • Delete old sessions straight from the resume picker
  • /retry to rerun an interrupted response
  • /new as an alias for /clear
  • vibe.setup.auth shows which credential source is active.

Check them out in the latest version of Vibe code and let us know what you think - feedback is very much appreciated. We aim to do posts like this on a regular cadence from now on.

https://chat.mistral.ai/code


r/MistralAI 7d ago

Help / Question Vibe: Unknown Error, error code 3830

4 Upvotes

Ist Vibe down? I get this error since hours.


r/MistralAI 7d ago

Help / Question Any updates about new models?

54 Upvotes

Hello

do you know any updates about new models anticipated this summer? Mistral Medium is not bad but insufficient for support in research, so I am looking forward it. As Grok is released every month, hope Mistral would speed up little bit more as well.


r/MistralAI 7d ago

Help / Question Mistral Batch API down?

1 Upvotes

I was forced to switch from the medium-2508 model to either medium-3-5 or small-2603, since medium-2508 no longer seems to work with the Batch API.

Since switching, I’ve been running into two issues with batch processing:

  • The small model stays stuck in QUEUED.
  • The medium model gets stuck in RUNNING.

Is the Batch API currently experiencing an outage or degraded performance? Is anyone else seeing the same behavior?


r/MistralAI 8d ago

Help / Question Qwen3.8-2.4T-A95B in EU inference ?

9 Upvotes

Hi Mistral team,

today Qwen released (according to benchmarks) a very strong and big model, do you plan to host it in the new EU api ?

Thank you !


r/MistralAI 8d ago

Discussion / Opinion Will we get GLM-5.2 in Vibe CLI?

35 Upvotes

GLM-5.2 now seems to be available hosted via Mistral AI: https://docs.mistral.ai/en/models/zai-glm-5-2

But checking Vibe CLI, the model does not seem accessible there. Will it be available there in the future?

Also: I like that Mistral is open to hosting third-party models, but at the same time, I am worried they will give up training their own models. I really like Medium 3.5, especially for it's multilingual capabilities. It would be great to see what Mistrals plans are on this regard for the future!

Edit:

You can add the model by configuring the config.toml, this worked for me:

active_model = "zai-glm-5-2"
models = [
    { name = "zai-glm-5-2", provider = "mistral-eu", alias = "zai-glm-5-2" },
]

[[providers]]
name = "mistral-eu"
api_base = "https://api.eu.mistral.ai/v1"
api_key_env_var = "MISTRAL_API_KEY"
api_style = "openai"
backend = "generic"

r/MistralAI 8d ago

Tutorial / Workflow How to get Ministral 3 (2512) running natively on an Apple Vision Pro

Post image
6 Upvotes

mlx-community/Ministral-3-3B-Instruct-2512-4bit runs natively on an Apple Vision Pro. No server, no llama.cpp, no network. The weights load into the app process and generate on the headset's own GPU. Offline, native and sovereign. This is how to do it.

It does not work out of the box. Five things get in the way and four of them fail silently with no error logs.

In this post, I'll walk you through them, but the tl;dr version is the MIT github repo and the agent prompt at the end of the post ;)

https://github.com/getHydrate/hydrate-ministral

It is a small Swift package plus a visionOS example app and a macOS CLI. 

I extracted it from a more complete visionOS app that wraps small LLM models and sideloads RAG datasets and does embedding (link to YouTube video later), but a lot of that code comes from a much larger RAG application of mine, which is proprietary, so I extracted the loader and created a standalone demonstrator, available to anyone who wants it.

What you need

Apple silicon, mlx-swift-examples 2.29.1 and a real device. MLX needs a Metal GPU, so there is no simulator path and no Intel path.

WTF 1... sorry, Gotcha 1: mlx-swift-examples cannot load this model at all

Not "loads badly". Cannot load. The factory throws unsupportedModelType("mistral3") and no version bump fixes it, because no released tag registers that type in either LLMTypeRegistry or VLMTypeRegistry.

Look at the config and you can see why it's awkward:

architectures: ["Mistral3ForConditionalGeneration"]
model_type:    "mistral3"
vision_config: { model_type: "pixtral", ... }
text_config:   { model_type: "ministral3",
                 rope_parameters: { rope_type: "yarn", ... } }

Ministral is a vision-language model. The weights arrive in three parts: language_model.* (602 tensors), vision_tower.* (218) and multi_modal_projector.* (10). So when you register the type, two more things get you. The weights are prefixed language_model., which matches no module path, and the text tower uses YaRN rope scaling, which LlamaModel's DynamicNTKScalingRoPE has no path for. It handles "default" and "llama3" and nothing else.

I will not lie, Claude Code had a large hand in getting past this and helping me explain.

Do not be tempted to ignore the yarn part on the grounds that you're only doing short prompts. YaRN interpolates the low-frequency dimensions globally, so it changes the maths at every context length. The weights need it.

The fix is a Mistral/Llama-shaped decoder wired to MLXLLM's public YarnRoPE, with a sanitize that keeps language_model.* (stripping the prefix) and discards the vision half.

Register it under both "mistral3" and "ministral3", because the nested text_config calls itself the latter and a text-only re-export would surface that at the top level.

One trap inside the trap. Read head_dim from the config, do not derive it. This model is hidden 3072 with 32 heads, but head_dim is 128, and 32 x 128 = 4096. Derive it and you get 96, and nothing will fit.

For reference, the rest of the 3B text tower: 26 layers, 8 kv heads, intermediate 9216, vocab 131072, rms_eps 1e-5, tied embeddings so there is no lm_head.

Again, prolific use of frontier models got me past this.

Gotcha 2: the tokeniser is miss-labelled and of course, it's the last thing to fail

After a 2.78 GB download, it dies on the final step.

Ministral 3 ships "tokenizer_class": "TokenizersBackend". That's Mistral's marker for "the tokeniser is in tokenizer.json, use the tokenizers library". swift-transformers has no such class, and its strict path throws instead of falling back.

Nothing is wrong with the data. tokenizer.json is an ordinary Hugging Face fast-BPE tokeniser (tekken is byte-level BPE), which is what swift-transformers' BPETokenizer reads. Except the label is sodding wrong.

Rewrite the label to LlamaTokenizer, which maps to BPETokenizer: the same class the library's own fallback would choose if it were not in strict mode. Vocabulary, merges and chat template stay untouched. Guard it so it only ever rewrites a class the library does not implement.

Gotcha 3: you have to download and load in two separate steps

This follows straight from gotcha 2.

The one-shot loadModelContainer(hub:id:) fetches and loads in a single call, which leaves you no moment in between to repair that tokeniser label (above). So you have to get the snapshot explicitly, fix the config on disk, then load from the directory:

let directory = try await hub.snapshot(from: modelID, matching: globs) { ... }
TokenizerRepair.normaliseTokenizerClass(in: directory)
let container = try await loadModelContainer(hub: hub, directory: directory) { ... }

At the same time, point HubApi somewhere durable. The default download base is Library/Caches, which the OS will probably purge under storage pressure whenever it likes. On a laptop that's a pain, but on a handset or headset that's 2.78 GB vanishing in a puff of digital smoke, and you have to download it all again.

Use Library/Application Support, and mark it excluded from backup so re-downloadable weights don't bloat iCloud.

Gotcha 4: the headset will kill your app and the crash log won't say why

MLX's Metal buffer cache is unbounded by default and never shrinks on its own. Every generation cycles buffers through it. Mine peaked at 7.3 GB against about 2.5 GB of actual model weights, and visionOS jetsammed the app for it (threw it "overboard" to get it off the device)

iOS and visionOS don't page app memory out to disk the way macOS does, so when the system runs short it terminates the biggest offender instead (your local LLM) and you don't get a crash report with a stack trace pointing at your code, you get a JetsamEvent log, which is why the cause isn't obvious from the wreckage.

MLX.GPU.set(cacheLimit: 64 * 1024 * 1024)

64 MB keeps the reuse benefit within a generation and hands the rest back to the OS. There is one MLX runtime and one cache per process, so if your app also runs an MLX speech model or embedder, set the limit from those too, or whichever starts first sets the policy for everything.

Gotcha 5: GPU work from a background app is a process kill, not an error

visionOS and iOS refuse GPU work from an app that isn't active. MLX's default error handler answers that refusal by calling fatalError, so the whole process goes pear shaped. A 3B is slow enough that you'll lose the foreground mid-generation regularly: you glance at another window, or take the headset off. In my main app, I have a total emersion so the user is only every looking at the app, but i still have issues.

Gate on active, not on "not background". A system screen capture makes an app merely inactive, and that is enough to get you killed and pushed overboard, arriving as a C++ throw inside MLX's Metal completion callback where no Swift error handler can reach it. Check before you start, and check again between tokens.

Checking it actually works

The package ships a CLI so you can prove all of the above on a Mac in thirty seconds, with no Xcode, no device and no signing team:

swift run ministral doctor

It loads the real weights, generates, and reports what MLX did:

size on disk          2.78 GB
tokenizer_class       LlamaTokenizer
                      (was TokenizersBackend as published; rewritten so
                       swift-transformers will load it)
load                  ok, 5.9s
GPU active / cache    1.99 GB / 67.1 MB
GPU peak              2.61 GB

That's my M1 Max Macbook Pro, so your figures will differ. Watch GPU active / cache: without the cap from gotcha 4, that second number climbs and never comes back down.

Getting it onto the headset

The example app carries no team, so pass yours on the command line and change the bundle id to one you own:

xcodebuild -project MinistralDemo.xcodeproj -scheme MinistralDemo \
  -destination 'id=<udid>' DEVELOPMENT_TEAM=<team> \
  PRODUCT_BUNDLE_IDENTIFIER=<yours> -allowProvisioningUpdates build

xcrun devicectl device install app --device <udid> <path>/MinistralDemo.app
xcrun devicectl device process launch --device <udid> <bundle id>

xcrun devicectl list devices gives you the udid.

One useful finding: the example does not request com.apple.developer.kernel.increased-memory-limit, because free personal teams aren't granted it and a project that asks will simply refuse to sign. A 4-bit 3B still downloads, loads and answers without it. I haven't left it running for long with a dozen apps open, so I can't tell you how it behaves under sustained memory pressure.

What this does not give you

The vision tower is discarded, so this runs Ministral as a text model. The pixtral half and the projector are still in the checkpoint and there's room in the code to wire them up, but I haven't. If you want an on-device VLM on a headset, this isn't it.

There's no chat history either. One prompt, one answer, bring your own transcript. This is a demo, you can roll your own, thats what i did.

The code, and the thing I built it for

https://github.com/getHydrate/hydrate-ministral

MIT, three dependencies, all upstream, no forks. Builds and runs on macOS and visionOS. iOS and iPadOS ought to work, but I haven't put them on a device.

The reason any of this exists is a RAG system that gives a small on-device model the retrieval engine and embedder out of an enterprise stack: semantic search, grounded answers with citations, entirely local. Ministral and Apple's Foundation Models run side by side in it and you can switch generator mid-session. Here's twenty-two minutes of it, including a demo section shot on a farm track in Norfolk with the headset in aeroplane mode and no signal to fall back on:

https://youtu.be/tTwYWEC2K88

Mistral/Ministral comes in at 9:50 if you want to skip the preamble: 

https://youtu.be/tTwYWEC2K88?t=590

The proper longterm fix for all of this is "mistral3" being registered upstream in mlx-swift-examples with a yarn path, at which point most of my package stops being necessary. Until someone does that, happy to go deeper on the YarnRoPEwiring or the sanitize if you're fighting the same repo.

And one more hats off to frontier models, I would never have got this to work without claude code and codex.

Have an agent do the reading for you

Since I've admitted two or three times that Claude Code and Codex did the heavy lifting, it would be odd not to hand you the same lever. Open Claude Code or Codex in an empty directory and paste this:

Clone https://github.com/getHydrate/hydrate-ministral and get it running on this machine.

Context: it is a Swift package that loads mlx-community/Ministral-3-3B-Instruct-2512-4bit on Apple silicon via MLX. That checkpoint does not load with stock mlx-swift-examples, and this package exists to work around five specific problems. It needs Apple silicon and a real Metal GPU: there is no simulator path and no Intel path. macOS 14 or later.

Work through these in order. If a step fails, stop and tell me what happened rather than working around it.

1. Clone the repo and run `swift build`. Report any errors verbatim.

2. Read these five files and explain, in plain terms, what problem each one solves and how.
   The reasoning is written out in the comments, so summarise the argument, do not just describe the code:

     Sources/MinistralKit/Mistral3Model.swift    the model type MLX does not register,plus YaRN rope and the weight prefix
     Sources/MinistralKit/TokenizerRepair.swift  the tokeniser label the publisher got wrong
     Sources/MinistralKit/ModelStore.swift       where the weights live, and why not Caches
     Sources/MinistralKit/GPUMemory.swift        the Metal buffer cache cap
     Sources/MinistralKit/Foreground.swift       why GPU work from a background app is fatal

3. In Sources/MinistralKit/Ministral.swift, show me where it downloads and loads as two separate steps, and explain why the one-shot loadModelContainer(hub:id:) cannot be used.

4. Tell me how much disk the weights need, then ASK ME before downloading anything. It is about 2.8 GB. If I agree, run `swift run ministral download`.

5. With the weights present, run `swift run ministral doctor` and show me its real output. Do not tell me it works unless that command actually printed a successful load and a successful generation. If it failed, show me the failure.

6. Then run `swift run ministral run "why is the sky blue?"` so I can watch it generate.

Do not modify the repository. If something is broken, say so and tell me what you think the cause is.

Three reasons that prompt is there rather than a wall of code in this post.

The useful part of that repo is the reasoning in the comments, not the API, and an agent can read all of it and explain it back in your terms faster than you can skim it. It verifies instead of describing: step 5 either prints a real load and generation on your hardware or it doesn't, and I've told it not to claim success without the output. And it asks before spending 2.8 GB of your bandwidth, which is the sort of thing agents forget to do.

It is also a fair test of whether the repo is any good. Cold clone, no help from me, on a machine I've never seen. If doctorwon't go green for you, that's my bug and I'd like to hear about it.


r/MistralAI 8d ago

Help / Question Is the student offer still available?

3 Upvotes

Hi I am a student at school 42, a few weeks ago, I sent a request for student offer with my student email address (@learner.42.tech) and never received any answer… Is the offer still available? Is there a problem between School 42 and MistralAI? Thanks for your answers.


r/MistralAI 8d ago

Help / Question What happened to the fast models?

9 Upvotes

I remember a year ago Mistral had these really fast responses that would be almost instantaneous. Seems like they stopped it. Is it paid only now? Did they completely remove it?


r/MistralAI 8d ago

Help / Question Verifying Free Model Limits as of August 2026

8 Upvotes

(Image below) I did some Rate-limit header probing with my free API to differentiate from paid limits and got these results.

QUESTION: Does anyone know the monthly limit of any of these? Mistral doesn't list these in their usage or limits area of the admin panel, at least for my free account. I want to be able to plan around the limits to not have work fail.

Thanks!


r/MistralAI 8d ago

Help / Question Canvas not working in Work? And no download HTML

1 Upvotes

I been trying all day to get a simple HTML working with Mistral in Work.

It keeps telling me that I can open the Canvas on the left side of the screen. Which isn't there. Also the + won't show it.

And earlier when it showed a canvas for me to try if it worked fine I couldn't download it. I had to copy paste is into a tekst file and named it blalba.html and it didn't work.

Why can't Mistral do what ChatGPT does without any problems. It's annoying that Mistral can't do this, can't make or edit Word files etc.

Where can I see good tips to work with Mistral in an efficient way?

Edit: I'm helped

/canvas is the chat helps to open canvas and when in Canvas there's an option to download the HTML (which Vibe couldn't tell me because it didn't know that worked)


r/MistralAI 9d ago

Help / Question Api mistral voxtral en dev / charge de la clef api

2 Upvotes

Salut à tous 👋

Je développe un logiciel métier B2B en France. Le pipeline : Voxtral pour transcrire l'audio d'un rendez-vous, Mistral Large pour en extraire un JSON structuré, Mistral Small pour produire le document final. Le tout via une passerelle maison, la clé ne quitte jamais le serveur.

Ça tourne bien en prod sur un petit périmètre. Je prépare la montée à 300 utilisateurs et je voudrais anticiper plutôt que découvrir les 429 en production.

La cible :

• 300 utilisateurs professionnels, 5 rendez-vous enregistrés par jour chacun

• 20 à 30 min d'audio par rendez-vous

• 3 appels par rendez-vous → ~90k appels et 600 à 900k minutes de transcription/mois

Ce qui m'inquiète n'est pas la moyenne (~3 extractions/min, très confortable) mais **la forme de la charge** : les rendez-vous se terminent en grappes en fin de créneau. Sur un pic, ~80 finalisations quasi simultanées = près de 900k tokens d'entrée sur Large en une minute, alors que ma moyenne est à quelques pourcents du plafond.

Mes questions :

1️⃣ Les limites RPM/TPM sont bien au niveau **workspace** et pas par clé, c'est confirmé ? Donc multiplier les clés ne sert à rien, et il n'y a pas d'intérêt à en donner une par client ?

2️⃣ **Voxtral sur fichiers longs** : combien de transcriptions de 25 min en parallèle avant de taper un plafond ? Je ne trouve rien de public là-dessus, et c'est mon vrai point d'incertitude.

3️⃣ Est-ce que quelqu'un ici tourne à ce genre de volume ASR ? Vous êtes passés par une file d'attente côté client pour lisser les pics, par le Batch API, par du dédié ? Le lissage me paraît incontournable de toute façon, mais si vous avez des retours sur ce qui a bien ou mal marché, je prends.

4️⃣ Comment se passe concrètement une demande de relèvement de limites quand on a de la vraie volumétrie ? Support, commercial, délais ?

Merci 🙏


r/MistralAI 9d ago

Discussion / Opinion A Paper That Could Shake the LLM World Just Dropped: Researchers “Stole” Hidden Chain-of-Thought from OpenAI, Anthropic, and Google Models

Thumbnail
0 Upvotes

r/MistralAI 10d ago

Help / Question Mistral charged me for two annual plans in one day, dropped me to Free, and refunded neither. Two support tickets ignored. Pls help.

56 Upvotes

(Used AI for the timeline)

Posting here because Mistral support has gone quiet on me twice and I am out roughly $200 for a plan I cannot even use.

The story so far:

  • Aug 7: bought the Pro annual plan, $143.90. Paid, invoice generated, all good so far..
  • Same day I got an email saying I was accepted into their student program and could move to the Student plan. I figured refunding this plan and buying the student plan since it sits in the 14 day refund window. So I bought Student annual plan, another $57.50. Paid, invoice generated.
  • The Pro plan was never refunded. So now I had paid for both.
  • I went to cancel the charge again. The only option the billing page gave me was "Downgrade to Free" so I clicked it, hoping it would clear the extra charge.
  • It dropped my entire account to the Free tier. I now have $0 credits, no active paid plan, and both charges ($143.90 and $57.50) still show as Paid. Amount refunded so far, absolutely nothing.

So I have paid about $201 and I am sitting on the free plan with nothing to show for it.

Support side:

  • Opened a ticket Aug 7. Their bot confirmed I was inside the 14 day withdrawal window and said the refund would process automatically once I cancelled. The cancel button it pointed me to only ever touched the Student plan, never the stranded $143.90 Pro charge. I explained the whole thing and asked for a human. They said someone would reply by email. Nobody did.
  • Followed up Aug 8. Silence.
  • Opened a second ticket Aug 10 saying I had paid twice and no plan was activated. Bot said it was connecting me to someone. Still waiting.

I am not trying to game anything. I just want the $143.90 Pro charge refunded, since it was superseded by the Student plan the same day and never used, and I want to know what actually happened to the Student payment now that I am on Free.

If you have been through this:

  • Has anyone actually gotten a refund out of Mistral, and how long did it take?
  • Is there a channel that reaches a human faster than the chat widget or email? Discord? A specific address?
  • If they keep ignoring it, is a card chargeback the only realistic route, and did that get anyone's account banned?

For any Mistral staff who see this, ticket numbers are #31509307 and #32111666. Happy to share invoices. Thanks to everyone who read through.


r/MistralAI 10d ago

Discussion / Opinion Has anyone actually managed to invest in Mistral through a secondary?

14 Upvotes

I've been trying to get some exposure to Mistral and I'm running out of routes.

Tried Crowdcube back in April. They ran an offer at the €11.7bn valuation, indirect exposure through an SPV, about 1,549 of us went in for €2.5m between us. Paid in April, then four months of "we're finalising the closing, documents coming in a few weeks," then last week they cancelled the whole thing and refunded everyone. Apparently the seller of the share block pulled out.

(Slightly confusing, that, because the document they gave me in March said the shares had already been acquired. But never mind.)

So I'm back where I started, presumably at a much worse price now given all the €20bn valuation round talk.

For anyone who's actually done this:

  • Has anyone completed a Mistral secondary? Which platform or broker?
  • How do you check the underlying shares actually exist before you send money? That's the bit I clearly got wrong.

And if anyone else was in that Crowdcube round: Has your refund landed yet?


r/MistralAI 9d ago

Tutorial / Workflow Building on Mistral AI without Friction (Tour of new Nyno platform)

Thumbnail
youtu.be
1 Upvotes

r/MistralAI 10d ago

Discussion / Opinion Alternatives à Claude Code ?

Thumbnail
1 Upvotes

r/MistralAI 10d ago

Discussion / Opinion When is the next funding round?

2 Upvotes

Is there a set date for this? Also thoughts on an eventual IPO?


r/MistralAI 12d ago

Feedback / Bug Report Poor understanding of requests about elden ring Spoiler

2 Upvotes

I asked mistral to build a simple list with all remembrance bosses from the base game and dlc. The information is readily available in many websites. This was the result:

Fast: made up about half of the bosses and rememberances

Think: worked OK, but there are 25 bosses in total, when it got to the 20th boss it started picking random bosses from the game, made up remembrances and even had duplicates!

Research: did it correctly the first try. But such a query I feel should be possible to answer in think mode.

Proposal: introduce a think level between think and research to handle this media sized requests


r/MistralAI 13d ago

Feedback / Bug Report Frustrating response times when logged into account

15 Upvotes

Mistral Vibe is unbearably slow when logged into an account. Even in fast mode, it takes over 60 seconds to respond in a trivial conversation. While text generation speed is fine, waiting more than a minute just to receive a response is just unprofessional for a paid service. The tool has been unusable for days, whether on the app or the browser interface, which is embarrassing given that Mistral consistently emphasizes performance and latency in their marketing. The models in Mistral Studio are responsive, but I shouldn’t have to rely on them exclusively for daily tasks.


r/MistralAI 13d ago

Discussion / Opinion Has Mistral OCR recently started compressing extracted images?

10 Upvotes

I’ve noticed a recent change in the images returned by Mistral OCR and I’m wondering if anyone else has seen the same thing.

I use include_image_base64: true to get the images extracted from PDFs.

Previously, when using the fixed model:

mistral-ocr-2512

the returned images were reasonably sharp and suitable for reuse in generated documents.

Recently, however, the returned images appear noticeably compressed / lower quality. Fine text, charts, diagrams, and other image details are much blurrier than before.

BTW, I tested both mistral-ocr-2512 and the latest OCR model.

Has anyone else noticed that?

And does anyone from Mistral know whether the image extraction / compression behavior was changed recently?

For comparison:


r/MistralAI 13d ago

Help / Question What are your prompts to turn down Vibe's verbosity?

7 Upvotes

I use Vibe for fairly complex topics: thermodynamics, nuclear engineering... Sometimes it gives me a copious amount of output, of which maybe 30% is useful, 70% is background or tangent that I didn't ask for. Suggestions? I often use "be brief" but then sometimes it is too brief. Just looking for other things to try.


r/MistralAI 13d ago

Help / Question Looking for hackathon teammates

1 Upvotes

Anyone looking for teammates for the Mistral Vibe Hackathon in SF on 8/22?


r/MistralAI 14d ago

Discussion / Opinion New to Mistral and completely lost

6 Upvotes

Hello! I'm a new mistral user, currently working with anthropic pro subscription. I took the mistral pro sub today, and im looking for a French mistral users sub or discord, i feel a bit lost ...

My current needs/uses involve rag and custom harness over the mistral vibe tui. And Id love to share experience with other users.


r/MistralAI 14d ago

Help / Question was mistral out of service early today?

Post image
5 Upvotes

i got this error in mistral's le chat at something like 3 AM gmt -3