Skip to content

Commit 02ec386

Browse files
author
GitHub Actions
committed
Update version to v0.0.178
1 parent e9992eb commit 02ec386

File tree

5 files changed

+45
-11
lines changed

5 files changed

+45
-11
lines changed

docs/capabilities/reasoning.md

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ Currently we have two reasoning models:
2626
- `magistral-medium-latest`: Our more powerful reasoning model balancing performance and cost.
2727

2828
:::info
29-
Currently, `-latest` points to `-2507`, our most recent version of our reasoning models. If you were previously using `-2506`, a **migration** regarding the thinking chunks is required.
30-
- `-2507` **(new)**: Uses tokenized thinking chunks via control tokens, providing the thinking traces in different types of content chunks.
29+
Currently, `-latest` points to `-2509`, our most recent version of our reasoning models. If you were previously using `-2506`, a **migration** regarding the thinking chunks is required.
30+
- `-2507` & `-2509` **(new)**: Uses tokenized thinking chunks via control tokens, providing the thinking traces in different types of content chunks.
3131
- `-2506` **(old)**: Used `<think>\n` and `\n</think>\n` tags as strings to encapsulate the thinking traces for input and output within the same content type.
3232
<Tabs groupId="version">
33-
<TabItem value="2507" label="2507 (new)" default>
33+
<TabItem value="2509" label="2507/2509 (new)" default>
3434
```json
3535
[
3636
{
@@ -109,7 +109,33 @@ To have the best performance out of our models, we recommend having the followin
109109
<summary><b>System Prompt</b></summary>
110110

111111
<Tabs groupId="version">
112-
<TabItem value="2507" label="2507 (new)" default>
112+
<TabItem value="2509" label="2509 (new)" default>
113+
```json
114+
{
115+
"role": "system",
116+
"content": [
117+
{
118+
"type": "text",
119+
"text": "# HOW YOU SHOULD THINK AND ANSWER\n\nFirst draft your thinking process (inner monologue) until you arrive at a response. Format your response using Markdown, and use LaTeX for any mathematical equations. Write both your thoughts and the response in the same language as the input.\n\nYour thinking process must follow the template below:"
120+
},
121+
{
122+
"type": "thinking",
123+
"thinking": [
124+
{
125+
"type": "text",
126+
"text": "Your thoughts or/and draft, like working through an exercise on scratch paper. Be as casual and as long as you want until you are confident to generate the response to the user."
127+
}
128+
]
129+
},
130+
{
131+
"type": "text",
132+
"text": "Here, provide a self-contained response."
133+
}
134+
]
135+
}
136+
```
137+
</TabItem>
138+
<TabItem value="2507" label="2507" default>
113139
```json
114140
{
115141
"role": "system",
@@ -231,7 +257,7 @@ curl --location "https://api.mistral.ai/v1/chat/completions" \
231257
</Tabs>
232258

233259
<Tabs groupId="version">
234-
<TabItem value="2507" label="2507 (new)" default>
260+
<TabItem value="2509" label="2507/2509 (new)" default>
235261
The output of the model will include different chunks of content, but mostly a `thinking` type with the reasoning traces and a `text` type with the answer like so:
236262
```json
237263
"content": [

docs/capabilities/vision.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ Vision capabilities enable models to analyze images and provide insights based o
1111
For more specific use cases regarding document parsing and data extraction we recommend taking a look at our Document AI stack [here](../document_ai/document_ai_overview).
1212

1313
## Models with Vision Capabilities:
14+
- Mistral Medium 3.1 2508 (`mistral-medium-latest`)
15+
- Mistral Small 3.2 2506 (`mistral-small-latest`)
16+
- Magistral Small 1.2 2509 (`magistral-small-latest`)
17+
- Magistral Medium 1.2 2509 (`magistral-medium-latest`)
1418
- Pixtral 12B (`pixtral-12b-latest`)
1519
- Pixtral Large 2411 (`pixtral-large-latest`)
16-
- Mistral Medium 2505 (`mistral-medium-latest`)
17-
- Mistral Small 2503 (`mistral-small-latest`)
1820

1921
## Passing an Image URL
2022
If the image is hosted online, you can simply provide the URL of the image in the request. This method is straightforward and does not require any encoding.

docs/getting-started/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ title: Changelog
44
sidebar_position: 1.8
55
---
66

7+
September 18, 2025
8+
- We released Magistral Medium 1.2 (`magistral-medium-2509`) and Magistral Small 1.2 (`magistral-small-2509`).
9+
710
August 27, 2025
811
- Added a new parameter `p` to the chunks streamed back by the Completion API.
912
- Implemented for security to prevent token-length side-channel attacks, as reported by Microsoft researchers.

docs/getting-started/models/overview.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ Mistral provides two types of models: open models and premier models.
1717
| Model | Weight availability|Available via API| Description | Max Tokens| API Endpoints|Version|
1818
|--------------------|:--------------------:|:--------------------:|:--------------------:|:--------------------:|:--------------------:|:--------------------:|
1919
| Mistral Medium 3.1 | | :heavy_check_mark: | Our frontier-class multimodal model released August 2025. Improving tone and performance. Read more about Medium 3 in our [blog post](https://mistral.ai/news/mistral-medium-3/) | 128k | `mistral-medium-2508` | 25.08|
20-
| Magistral Medium 1.1 | | :heavy_check_mark: | Our frontier-class reasoning model released July 2025. | 40k | `magistral-medium-2507` | 25.07|
20+
| Magistral Medium 1.2 | | :heavy_check_mark: | Our frontier-class reasoning model update released September 2025 with vision support. | 128k | `magistral-medium-2509` | 25.09|
2121
| Codestral 2508 | | :heavy_check_mark: | Our cutting-edge language model for coding released end of July 2025, Codestral specializes in low-latency, high-frequency tasks such as fill-in-the-middle (FIM), code correction and test generation. Learn more in our [blog post](https://mistral.ai/news/codestral-25-08/) | 256k | `codestral-2508` | 25.08|
2222
| Voxtral Mini Transcribe | | :heavy_check_mark: | An efficient audio input model, fine-tuned and optimized for transcription purposes only. | | `voxtral-mini-2507` via `audio/transcriptions` | 25.07|
2323
| Devstral Medium | | :heavy_check_mark: | An enterprise grade text model, that excels at using tools to explore codebases, editing multiple files and power software engineering agents. Learn more in our [blog post](https://mistral.ai/news/devstral-2507) | 128k | `devstral-medium-2507` | 25.07|
2424
| Mistral OCR 2505 | | :heavy_check_mark: | Our OCR service powering our Document AI stack that enables our users to extract interleaved text and images | | `mistral-ocr-2505` | 25.05|
2525
| Magistral Medium 1 | | :heavy_check_mark: | Our first frontier-class reasoning model released June 2025. Learn more in our [blog post](https://mistral.ai/news/magistral/) | 40k | `magistral-medium-2506` | 25.06|
2626
| Ministral 3B | | :heavy_check_mark: | World’s best edge model. Learn more in our [blog post](https://mistral.ai/news/ministraux/) | 128k | `ministral-3b-2410` | 24.10|
2727
| Ministral 8B | :heavy_check_mark: <br/> [Mistral Research License](https://mistral.ai/licenses/MRL-0.1.md)| :heavy_check_mark: |Powerful edge model with extremely high performance/price ratio. Learn more in our [blog post](https://mistral.ai/news/ministraux/) | 128k | `ministral-8b-2410` | 24.10|
28+
| Magistral Medium 1.1 | | :heavy_check_mark: | Our frontier-class reasoning model released July 2025. | 40k | `magistral-medium-2507` | 25.07|
29+
| Magistral Medium 1.0 | | :heavy_check_mark: | Our frontier-class reasoning model released June 2025. Learn more in our [blog post](https://mistral.ai/news/magistral/) | 40k | `magistral-medium-2506` | 25.06|
2830
| Mistral Medium 3 | | :heavy_check_mark: | Our frontier-class multimodal model released May 2025. Learn more in our [blog post](https://mistral.ai/news/mistral-medium-3/) | 128k | `mistral-medium-2505` | 25.05|
2931
| Codestral 2501 | | :heavy_check_mark: | Our cutting-edge language model for coding with the second version released January 2025, Codestral specializes in low-latency, high-frequency tasks such as fill-in-the-middle (FIM), code correction and test generation. Learn more in our [blog post](https://mistral.ai/news/codestral-2501/) | 256k | `codestral-2501` | 25.01|
3032
| Mistral Large 2.1 |:heavy_check_mark: <br/> [Mistral Research License](https://mistral.ai/licenses/MRL-0.1.md)| :heavy_check_mark: | Our top-tier large model for high-complexity tasks with the lastest version released November 2024. Learn more in our [blog post](https://mistral.ai/news/pixtral-large/) | 128k | `mistral-large-2411` | 24.11|
@@ -38,6 +40,7 @@ Mistral provides two types of models: open models and premier models.
3840

3941
| Model | Weight availability|Available via API| Description | Max Tokens| API Endpoints|Version|
4042
|--------------------|:--------------------:|:--------------------:|:--------------------:|:--------------------:|:--------------------:|:--------------------:|
43+
| Magistral Small 1.2 | :heavy_check_mark: <br/> Apache2 | :heavy_check_mark: | Our small reasoning model released September 2025 with vision support. | 128k | `magistral-small-2509` | 25.09|
4144
| Magistral Small 1.1 | :heavy_check_mark: <br/> Apache2 | :heavy_check_mark: | Our small reasoning model released July 2025. | 40k | `magistral-small-2507` | 25.07|
4245
| Voxtral Small | :heavy_check_mark: <br/> Apache2 | :heavy_check_mark: | Our first model with audio input capabilities for instruct use cases. | 32k | `voxtral-small-2507` | 25.07|
4346
| Voxtral Mini | :heavy_check_mark: <br/> Apache2 | :heavy_check_mark: | A mini version of our first audio input model. | 32k | `voxtral-mini-2507` | 25.07|
@@ -58,8 +61,8 @@ it is recommended to use the dated versions of the Mistral AI API.
5861
Additionally, be prepared for the deprecation of certain endpoints in the coming months.
5962

6063
Here are the details of the available versions:
61-
- `magistral-medium-latest`: currently points to `magistral-medium-2507`.
62-
- `magistral-small-latest`: currently points to `magistral-small-2507`.
64+
- `magistral-medium-latest`: currently points to `magistral-medium-2509`.
65+
- `magistral-small-latest`: currently points to `magistral-small-2509`.
6366
- `mistral-medium-latest`: currently points to `mistral-medium-2508`.
6467
- `mistral-large-latest`: currently points to `mistral-medium-2508`, previously `mistral-large-2411`.
6568
- `pixtral-large-latest`: currently points to `pixtral-large-2411`.

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.0.178
1+
v0.0.66

0 commit comments

Comments
 (0)