|
26 | 26 | "\n", |
27 | 27 | " 1. Create an [Azure subscription](https://azure.microsoft.com).\n", |
28 | 28 | " 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", |
30 | 30 | "\n", |
31 | 31 | " * 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)." |
32 | 32 | ] |
|
65 | 65 | "model = AzureAIChatCompletionsModel(\n", |
66 | 66 | " endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n", |
67 | 67 | " credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n", |
68 | | - " model=\"mistral-medium-2505\",\n", |
| 68 | + " model=\"Mistral-Large-2411\",\n", |
69 | 69 | ")" |
70 | 70 | ] |
71 | 71 | }, |
|
195 | 195 | "producer = AzureAIChatCompletionsModel(\n", |
196 | 196 | " endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n", |
197 | 197 | " credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n", |
198 | | - " model=\"mistral-medium-2505\",\n", |
| 198 | + " model=\"Mistral-Large-2411\",\n", |
199 | 199 | ")\n", |
200 | 200 | "\n", |
201 | 201 | "verifier = AzureAIChatCompletionsModel(\n", |
|
394 | 394 | "model = AzureAIChatCompletionsModel(\n", |
395 | 395 | " endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n", |
396 | 396 | " credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n", |
397 | | - " model=\"mistral-medium-2505\",\n", |
| 397 | + " model=\"Mistral-Large-2411\",\n", |
398 | 398 | " client_kwargs={\"logging_enable\": True},\n", |
399 | 399 | ")" |
400 | 400 | ] |
|
0 commit comments