Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"\n",
" 1. Create an [Azure subscription](https://azure.microsoft.com).\n",
" 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",
" 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",
" 3. Deploy one model supporting the [Azure AI model inference API](https://aka.ms/azureai/modelinference). In this example we use a `Mistral-Large-3` and a `mistral-small-2503` deployment. \n",
"\n",
" * 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)."
]
Expand Down Expand Up @@ -65,7 +65,7 @@
"model = AzureAIChatCompletionsModel(\n",
" endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n",
" credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n",
" model=\"Mistral-Large-2411\",\n",
" model=\"Mistral-Large-3\",\n",
")"
]
},
Expand Down Expand Up @@ -195,7 +195,7 @@
"producer = AzureAIChatCompletionsModel(\n",
" endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n",
" credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n",
" model=\"Mistral-Large-2411\",\n",
" model=\"Mistral-Large-3\",\n",
")\n",
"\n",
"verifier = AzureAIChatCompletionsModel(\n",
Expand Down Expand Up @@ -394,7 +394,7 @@
"model = AzureAIChatCompletionsModel(\n",
" endpoint=os.environ[\"AZURE_INFERENCE_ENDPOINT\"],\n",
" credential=os.environ[\"AZURE_INFERENCE_CREDENTIAL\"],\n",
" model=\"Mistral-Large-2411\",\n",
" model=\"Mistral-Large-3\",\n",
" client_kwargs={\"logging_enable\": True},\n",
")"
]
Expand Down
Loading