Skip to content

Commit c4a9056

Browse files
authored
Update the wrong AiServiceProvider parameter (#45174)
1 parent c887f03 commit c4a9056

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/ai/quickstarts/includes/ai-templates-azure-openai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ After you install the AI app templates, you can use them to create starter apps
5353
1. Create a new app with the `dotnet new` command and the following parameters:
5454

5555
```dotnetcli
56-
dotnet new aichatweb --framework "net9.0" --AIServiceProvider "azureopenai" --VectorStore "local"
56+
dotnet new aichatweb --framework "net9.0" --AiServiceProvider "azureopenai" --VectorStore "local"
5757
```
5858
5959
The .NET CLI creates a new .NET 9.0 app with the configurations you specified.

docs/ai/quickstarts/includes/ai-templates-ollama.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ After you install the AI app templates, you can use them to create starter apps
5353
1. Create a new app with the `dotnet new` command and the following parameters:
5454

5555
```dotnetcli
56-
dotnet new aichatweb --framework "net9.0" --AIServiceProvider "ollama" --VectorStore "local"
56+
dotnet new aichatweb --framework "net9.0" --AiServiceProvider "ollama" --VectorStore "local"
5757
```
5858
5959
The .NET CLI creates a new .NET 9.0 app with the configurations you specified.

docs/ai/quickstarts/includes/ai-templates-openai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ After you install the AI app templates, you can use them to create starter apps
5353
1. Create a new app with the `dotnet new` command and the following parameters:
5454

5555
```dotnetcli
56-
dotnet new aichatweb --framework "net9.0" --AIServiceProvider "openai" --VectorStore "local"
56+
dotnet new aichatweb --framework "net9.0" --AiServiceProvider "openai" --VectorStore "local"
5757
```
5858
5959
The .NET CLI creates a new .NET 9.0 app with the configurations you specified.

0 commit comments

Comments
 (0)