Skip to content

Commit 6132c37

Browse files
authored
Initiate Deprecation for Mistral Large (24.11) and Codestral (25.01) (#4347)
1 parent 8d7f59a commit 6132c37

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

notebooks/official/generative_ai/mistralai_intro.ipynb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@
9494
"* ### Mistral Small 3.1 (25.03)\n",
9595
"Mistral Small 3.1 (25.03) is the enhanced version of Mistral Small 3, featuring multimodal capabilities and an extended context length of up to 128k.\n",
9696
"\n",
97-
"* ### Codestral (25.01)\n",
97+
"* ### Codestral (25.01) (Deprecated)\n",
9898
"A cutting-edge model specifically designed for code generation, including fill-in-the-middle and code completion.\n",
9999
"\n",
100-
"* ### Mistral Large (24.11)\n",
100+
"* ### Mistral Large (24.11) (Deprecated)\n",
101101
"Mistral Large (24.11) is the latest version of the Mistral Large model now with improved reasoning and function calling capabilities.\n",
102102
"\n",
103103
"\n",
@@ -439,9 +439,9 @@
439439
"source": [
440440
"#### Code generation\n",
441441
"\n",
442-
"Mistral Large, Mistral Medium, Codestral 2, Codestral (25.01) support code generation with the Chat Completion operations covered above.\n",
442+
"Mistral Medium and Codestral 2 support code generation with the Chat Completion operations covered above.\n",
443443
"\n",
444-
"With Codestral 2 and Codestral (25.01), you can also do Fill-in-the-middle operations."
444+
"With Codestral 2, you can also do Fill-in-the-middle operations."
445445
]
446446
},
447447
{
@@ -477,7 +477,7 @@
477477
},
478478
"outputs": [],
479479
"source": [
480-
"MODEL = \"codestral-2\" # Use codestral-2501 for Codestral (25.01)\n",
480+
"MODEL = \"codestral-2\"\n",
481481
"SELECTED_MODEL_VERSION = \"\"\n",
482482
"\n",
483483
"PAYLOAD = {\n",
@@ -507,7 +507,7 @@
507507
},
508508
"outputs": [],
509509
"source": [
510-
"MODEL = \"codestral-2\" # Use codestral-2501 for Codestral (25.01)\n",
510+
"MODEL = \"codestral-2\"\n",
511511
"SELECTED_MODEL_VERSION = \"\"\n",
512512
"\n",
513513
"# Get the access token\n",
@@ -942,9 +942,9 @@
942942
"source": [
943943
"#### Code generation\n",
944944
"\n",
945-
"Mistral Large, Mistral Medium, Codestral 2 and Codestral (25.01) support code generation with the Chat Completion operations covered above.\n",
945+
"Mistral Medium and Codestral 2 support code generation with the Chat Completion operations covered above.\n",
946946
"\n",
947-
"With Codestral 2 and Codestral (25.01), you can also do Fill-in-the-middle operations."
947+
"With Codestral 2, you can also do Fill-in-the-middle operations."
948948
]
949949
},
950950
{
@@ -977,7 +977,7 @@
977977
" access_token=access_token, region=LOCATION, project_id=PROJECT_ID\n",
978978
")\n",
979979
"\n",
980-
"MODEL = \"codestral-2\" # Use codestral-2501 for Codestral (25.01)\n",
980+
"MODEL = \"codestral-2\"\n",
981981
"MODEL_VERSION = \"\"\n",
982982
"\n",
983983
"try:\n",

0 commit comments

Comments
 (0)