Skip to content

Commit b73ec7c

Browse files
committed
fix
1 parent df8cbed commit b73ec7c

9 files changed

+57
-3
lines changed

articles/ai-studio/how-to/deploy-models-cohere-command.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -987,6 +987,12 @@ Import the following namespaces:
987987
using Azure;
988988
using Azure.Identity;
989989
using Azure.AI.Inference;
990+
```
991+
992+
This example also use the following namespaces but you may not always need them:
993+
994+
995+
```csharp
990996
using System.Text.Json;
991997
using System.Text.Json.Serialization;
992998
using System.Reflection;

articles/ai-studio/how-to/deploy-models-jais.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,12 @@ Import the following namespaces:
576576
using Azure;
577577
using Azure.Identity;
578578
using Azure.AI.Inference;
579+
```
580+
581+
This example also use the following namespaces but you may not always need them:
582+
583+
584+
```csharp
579585
using System.Text.Json;
580586
using System.Text.Json.Serialization;
581587
using System.Reflection;

articles/ai-studio/how-to/deploy-models-jamba.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,12 @@ Import the following namespaces:
575575
using Azure;
576576
using Azure.Identity;
577577
using Azure.AI.Inference;
578+
```
579+
580+
This example also use the following namespaces but you may not always need them:
581+
582+
583+
```csharp
578584
using System.Text.Json;
579585
using System.Text.Json.Serialization;
580586
using System.Reflection;

articles/ai-studio/how-to/deploy-models-llama.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,12 @@ Import the following namespaces:
788788
using Azure;
789789
using Azure.Identity;
790790
using Azure.AI.Inference;
791+
```
792+
793+
This example also use the following namespaces but you may not always need them:
794+
795+
796+
```csharp
791797
using System.Text.Json;
792798
using System.Text.Json.Serialization;
793799
using System.Reflection;

articles/ai-studio/how-to/deploy-models-mistral-nemo.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ zone_pivot_groups: azure-ai-model-catalog-samples-chat
1616
# How to use Mistral Nemo chat model with Azure AI studio
1717

1818
In this article, you learn about Mistral Nemo chat model and how to use them with Azure AI studio.
19-
Mistral AI offers two categories of models. Premium models including [Mistral Large and Mistral Small](deploy-models-mistral.md), available as serverless APIs with pay-as-you-go token-based billing. Open models including [Mistral Nemo](deploy-models-mistral-nemo.md), [Mixtral-8x7B-Instruct-v01, Mixtral-8x7B-v01, Mistral-7B-Instruct-v01, and Mistral-7B-v01](deploy-models-mistral-oss.md); available to also download and run on self-hosted managed endpoints.
19+
Mistral AI offers two categories of models. Premium models including [Mistral Large and Mistral Small](deploy-models-mistral.md), available as serverless APIs with pay-as-you-go token-based billing. Open models including [Mistral Nemo](deploy-models-mistral-nemo.md), [Mixtral-8x7B-Instruct-v01, Mixtral-8x7B-v01, Mistral-7B-Instruct-v01, and Mistral-7B-v01](deploy-models-mistral-open.md); available to also download and run on self-hosted managed endpoints.
2020

2121

2222
::: zone pivot="programming-language-python"
@@ -923,6 +923,12 @@ Import the following namespaces:
923923
using Azure;
924924
using Azure.Identity;
925925
using Azure.AI.Inference;
926+
```
927+
928+
This example also use the following namespaces but you may not always need them:
929+
930+
931+
```csharp
926932
using System.Text.Json;
927933
using System.Text.Json.Serialization;
928934
using System.Reflection;

articles/ai-studio/how-to/deploy-models-mistral-open.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ zone_pivot_groups: azure-ai-model-catalog-samples-chat
1616
# How to use Mistral-7B and Mixtral-8x7B chat models with Azure AI studio
1717

1818
In this article, you learn about Mistral-7B and Mixtral-8x7B chat models and how to use them with Azure AI studio.
19-
Mistral AI offers two categories of models. Premium models including [Mistral Large and Mistral Small](deploy-models-mistral.md), available as serverless APIs with pay-as-you-go token-based billing. Open models including [Mistral Nemo](deploy-models-mistral-nemo.md), [Mixtral-8x7B-Instruct-v01, Mixtral-8x7B-v01, Mistral-7B-Instruct-v01, and Mistral-7B-v01](deploy-models-mistral-oss.md); available to also download and run on self-hosted managed endpoints.
19+
Mistral AI offers two categories of models. Premium models including [Mistral Large and Mistral Small](deploy-models-mistral.md), available as serverless APIs with pay-as-you-go token-based billing. Open models including [Mistral Nemo](deploy-models-mistral-nemo.md), [Mixtral-8x7B-Instruct-v01, Mixtral-8x7B-v01, Mistral-7B-Instruct-v01, and Mistral-7B-v01](deploy-models-mistral-open.md); available to also download and run on self-hosted managed endpoints.
2020

2121

2222
::: zone pivot="programming-language-python"
@@ -709,6 +709,12 @@ Import the following namespaces:
709709
using Azure;
710710
using Azure.Identity;
711711
using Azure.AI.Inference;
712+
```
713+
714+
This example also use the following namespaces but you may not always need them:
715+
716+
717+
```csharp
712718
using System.Text.Json;
713719
using System.Text.Json.Serialization;
714720
using System.Reflection;

articles/ai-studio/how-to/deploy-models-mistral.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ zone_pivot_groups: azure-ai-model-catalog-samples-chat
1616
# How to use Mistral premium chat models with Azure AI studio
1717

1818
In this article, you learn about Mistral premium chat models and how to use them with Azure AI studio.
19-
Mistral AI offers two categories of models. Premium models including [Mistral Large and Mistral Small](deploy-models-mistral.md), available as serverless APIs with pay-as-you-go token-based billing. Open models including [Mistral Nemo](deploy-models-mistral-nemo.md), [Mixtral-8x7B-Instruct-v01, Mixtral-8x7B-v01, Mistral-7B-Instruct-v01, and Mistral-7B-v01](deploy-models-mistral-oss.md); available to also download and run on self-hosted managed endpoints.
19+
Mistral AI offers two categories of models. Premium models including [Mistral Large and Mistral Small](deploy-models-mistral.md), available as serverless APIs with pay-as-you-go token-based billing. Open models including [Mistral Nemo](deploy-models-mistral-nemo.md), [Mixtral-8x7B-Instruct-v01, Mixtral-8x7B-v01, Mistral-7B-Instruct-v01, and Mistral-7B-v01](deploy-models-mistral-open.md); available to also download and run on self-hosted managed endpoints.
2020

2121

2222
::: zone pivot="programming-language-python"
@@ -1070,6 +1070,12 @@ Import the following namespaces:
10701070
using Azure;
10711071
using Azure.Identity;
10721072
using Azure.AI.Inference;
1073+
```
1074+
1075+
This example also use the following namespaces but you may not always need them:
1076+
1077+
1078+
```csharp
10731079
using System.Text.Json;
10741080
using System.Text.Json.Serialization;
10751081
using System.Reflection;

articles/ai-studio/how-to/deploy-models-phi-3-vision.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,12 @@ Import the following namespaces:
708708
using Azure;
709709
using Azure.Identity;
710710
using Azure.AI.Inference;
711+
```
712+
713+
This example also use the following namespaces but you may not always need them:
714+
715+
716+
```csharp
711717
using System.Text.Json;
712718
using System.Text.Json.Serialization;
713719
using System.Reflection;

articles/ai-studio/how-to/deploy-models-phi-3.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,12 @@ Import the following namespaces:
818818
using Azure;
819819
using Azure.Identity;
820820
using Azure.AI.Inference;
821+
```
822+
823+
This example also use the following namespaces but you may not always need them:
824+
825+
826+
```csharp
821827
using System.Text.Json;
822828
using System.Text.Json.Serialization;
823829
using System.Reflection;

0 commit comments

Comments
 (0)