Skip to content

Commit c78fcb7

Browse files
authored
Update getting-started-with-langchain-chat-models.ipynb (#267)
replace medium model with large, newer version.
1 parent 485eaf0 commit c78fcb7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scenarios/langchain/getting-started-with-langchain-chat-models.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"\n",
2727
" 1. Create an [Azure subscription](https://azure.microsoft.com).\n",
2828
" 2. Create an Azure AI hub resource as explained at [How to create and manage an Azure AI Studio hub](https://learn.microsoft.com/en-us/azure/ai-studio/how-to/create-azure-ai-resource).\n",
29-
" 3. Deploy one model supporting the [Azure AI model inference API](https://aka.ms/azureai/modelinference). In this example we use a `mistral-medium-2505` and a `Mistral-Small` deployment. \n",
29+
" 3. Deploy one model supporting the [Azure AI model inference API](https://aka.ms/azureai/modelinference). In this example we use a `Mistral-Large-2411` and a `Mistral-Small` deployment. \n",
3030
"\n",
3131
" * You can follow the instructions at [Add and configure models to Azure AI model inference service](https://learn.microsoft.com/azure/ai-studio/ai-services/how-to/create-model-deployments)."
3232
]
@@ -65,7 +65,7 @@
6565
"model = AzureAIChatCompletionsModel(\n",
6666
" endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n",
6767
" credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n",
68-
" model=\"mistral-medium-2505\",\n",
68+
" model=\"Mistral-Large-2411\",\n",
6969
")"
7070
]
7171
},
@@ -195,7 +195,7 @@
195195
"producer = AzureAIChatCompletionsModel(\n",
196196
" endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n",
197197
" credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n",
198-
" model=\"mistral-medium-2505\",\n",
198+
" model=\"Mistral-Large-2411\",\n",
199199
")\n",
200200
"\n",
201201
"verifier = AzureAIChatCompletionsModel(\n",
@@ -394,7 +394,7 @@
394394
"model = AzureAIChatCompletionsModel(\n",
395395
" endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n",
396396
" credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n",
397-
" model=\"mistral-medium-2505\",\n",
397+
" model=\"Mistral-Large-2411\",\n",
398398
" client_kwargs={\"logging_enable\": True},\n",
399399
")"
400400
]

0 commit comments

Comments
 (0)