You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/providers/mistral.md
+19-3Lines changed: 19 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Roo Code supports accessing models through the Mistral AI API, including both st
12
12
13
13
1.**Sign Up/Sign In:** Go to the [Mistral Platform](https://console.mistral.ai/). Create an account or sign in. You may need to go through a verification process.
14
14
2.**Create an API Key:**
15
-
-[La Plateforme API Key](https://console.mistral.ai/api-keys/) and/or
15
+
-[La Plateforme API Key](https://console.mistral.ai/api-keys/) and/or
16
16
-[Codestral API Key](https://console.mistral.ai/codestral)
17
17
18
18
## Supported Models
@@ -28,7 +28,7 @@ Roo Code supports the following Mistral models:
28
28
| mistral-small-latest | 0.3 | ✅ | ❌ |
29
29
| pixtral-large-latest | 0.7 | ✅ | ✅ |
30
30
31
-
The default model temperature in Roo Code is 0.0, so you should consider experimenting with [temperature adjustments](/advanced-usage/model-temperature)!
31
+
The default model temperature in Roo Code is **0.0**, so you should consider experimenting with [temperature adjustments](/advanced-usage/model-temperature)!
32
32
33
33
**Note:** Model availability and specifications may change.
34
34
Refer to the [Mistral AI documentation](https://docs.mistral.ai/api/) and [Mistral Model Overview](https://docs.mistral.ai/getting-started/models/models_overview/) for the latest information.
@@ -50,4 +50,20 @@ To use Codestral:
50
50
51
51
1.**Select "Mistral" as the API Provider.**
52
52
2.**Select a Codestral Model**
53
-
3.**Enter your Codestral (codestral.mistral.ai) or La Plateforme (api.mistral.ai) API Key.**
53
+
3.**Enter your Codestral (codestral.mistral.ai) or La Plateforme (api.mistral.ai) API Key.**
54
+
55
+
### Enable streaming
56
+
57
+
Whether to stream back partial progress. If set, tokens will be sent as data-only server-side events as they become available, with the stream terminated by a data: [DONE] message (the Mistral SDK takes care of that). Otherwise, the server will hold the request open until the timeout or until completion, with the response containing the full result.
58
+
59
+
### Optional: Stop Token
60
+
61
+
Stop generation (Mistral API) if this token is detected. Optional and only an option of the [Mistral API](https://docs.mistral.ai/api/#tag/chat/operation/chat_completion_v1_chat_completions_post).
62
+
63
+
## Debug Output Channel
64
+
65
+
If you need the protocol of the **Mistral SDK** (requests and responses) and the **Roo Code Mistral Handler**, this can be activated in the Visual Studio Code settings:
0 commit comments