Skip to content

Commit 08e758a

Browse files
committed
fix
1 parent 4bb3fcb commit 08e758a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

articles/ai-foundry/model-inference/includes/use-chat-reasoning/csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ ChatCompletionsOptions requestOptions = new ChatCompletionsOptions()
7575
Response<ChatCompletions> response = client.Complete(requestOptions);
7676
```
7777
78-
[ !INCLUDE [best-practices](best-practices.md)]
78+
[!INCLUDE [best-practices](best-practices.md)]
7979
8080
The response is as follows, where you can see the model's usage statistics:
8181

articles/ai-foundry/model-inference/includes/use-chat-reasoning/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ ChatCompletionsOptions requestOptions = new ChatCompletionsOptions()
9595
Response<ChatCompletions> response = client.complete(requestOptions);
9696
```
9797
98-
[ !INCLUDE [best-practices](best-practices.md)]
98+
[!INCLUDE [best-practices](best-practices.md)]
9999
100100
The response is as follows, where you can see the model's usage statistics:
101101

articles/ai-foundry/model-inference/includes/use-chat-reasoning/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ var response = await client.path("/chat/completions").post({
8080
});
8181
```
8282

83-
[ !INCLUDE [best-practices](best-practices.md)]
83+
[!INCLUDE [best-practices](best-practices.md)]
8484

8585
The response is as follows, where you can see the model's usage statistics:
8686

articles/ai-foundry/model-inference/includes/use-chat-reasoning/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ response = client.complete(
7777
)
7878
```
7979

80-
[ !INCLUDE [best-practices](best-practices.md)]
80+
[!INCLUDE [best-practices](best-practices.md)]
8181

8282
The response is as follows, where you can see the model's usage statistics:
8383

articles/ai-foundry/model-inference/includes/use-chat-reasoning/rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The following example shows how you can create a basic chat request to the model
6060
}
6161
```
6262

63-
[ !INCLUDE [best-practices](best-practices.md)]
63+
[!INCLUDE [best-practices](best-practices.md)]
6464

6565
The response is as follows, where you can see the model's usage statistics:
6666

0 commit comments

Comments
 (0)