Skip to content

Commit 44f0cfe

Browse files
committed
chore(common): fix captions
1 parent 9422462 commit 44f0cfe

File tree

1 file changed

+5
-5
lines changed
  • common/microsoft-extensions-ai-integration/AIPromptIntegration

1 file changed

+5
-5
lines changed

common/microsoft-extensions-ai-integration/AIPromptIntegration/readme.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To run the project successfully, you need to provide your endpoint and credentia
3030

3131
**Azure AI Inference Client registration**
3232

33-
>caption Program.cs
33+
>Program.cs
3434
```csharp
3535
var innerClient = new Azure.AI.Inference.ChatCompletionsClient(
3636
new Uri(endpoint),
@@ -40,7 +40,7 @@ var innerClient = new Azure.AI.Inference.ChatCompletionsClient(
4040

4141
**Azure OpenAI Client registration**
4242

43-
>caption Program.cs
43+
>Program.cs
4444
```csharp
4545
var innerClient = new AzureOpenAIClient(
4646
new Uri(endpoint),
@@ -50,15 +50,15 @@ var innerClient = new AzureOpenAIClient(
5050

5151
**OpenAI Client registration**
5252

53-
>caption Program.cs
53+
>Program.cs
5454
```csharp
5555
var innerClient = new OpenAIClient(apikey)
5656
.AsChatClient(model);
5757
```
5858

5959
**GitHub Models Client registration**
6060

61-
>caption Program.cs
61+
>Program.cs
6262
```csharp
6363
var innerClient = new OpenAIClient(
6464
new ApiKeyCredential(apikey),
@@ -71,7 +71,7 @@ var innerClient = new OpenAIClient(
7171

7272
**Ollama Client registration**
7373

74-
>caption Program.cs
74+
>Program.cs
7575
```csharp
7676
var innerClient = new OllamaChatClient(new Uri(endpoint), model);
7777
```

0 commit comments

Comments
 (0)