Skip to content

Commit 57c851b

Browse files
committed
fix
1 parent b73ec7c commit 57c851b

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -822,10 +822,10 @@ When you deploy the model to a self-hosted online endpoint with **Microsoft Entr
822822

823823

824824
```csharp
825-
//client = new ChatCompletionsClient(
826-
// new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
827-
// new DefaultAzureCredential(includeInteractiveCredentials: true)
828-
//);
825+
client = new ChatCompletionsClient(
826+
new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
827+
new DefaultAzureCredential(includeInteractiveCredentials: true)
828+
);
829829
```
830830

831831
> [!NOTE]

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -746,10 +746,10 @@ When you deploy the model to a self-hosted online endpoint with **Microsoft Entr
746746

747747

748748
```csharp
749-
//client = new ChatCompletionsClient(
750-
// new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
751-
// new DefaultAzureCredential(includeInteractiveCredentials: true)
752-
//);
749+
client = new ChatCompletionsClient(
750+
new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
751+
new DefaultAzureCredential(includeInteractiveCredentials: true)
752+
);
753753
```
754754

755755
### Get the model's capabilities

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -742,10 +742,10 @@ When you deploy the model to a self-hosted online endpoint with **Microsoft Entr
742742

743743

744744
```csharp
745-
//client = new ChatCompletionsClient(
746-
// new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
747-
// new DefaultAzureCredential(includeInteractiveCredentials: true)
748-
//);
745+
client = new ChatCompletionsClient(
746+
new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
747+
new DefaultAzureCredential(includeInteractiveCredentials: true)
748+
);
749749
```
750750

751751
### Get the model's capabilities

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -852,10 +852,10 @@ When you deploy the model to a self-hosted online endpoint with **Microsoft Entr
852852

853853

854854
```csharp
855-
//client = new ChatCompletionsClient(
856-
// new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
857-
// new DefaultAzureCredential(includeInteractiveCredentials: true)
858-
//);
855+
client = new ChatCompletionsClient(
856+
new Uri(Environment.GetEnvironmentVariable("AZURE_INFERENCE_ENDPOINT")),
857+
new DefaultAzureCredential(includeInteractiveCredentials: true)
858+
);
859859
```
860860

861861
> [!NOTE]

0 commit comments

Comments
 (0)