Skip to content

Commit 0ae966e

Browse files
authored
Fix cli command (#46357)
1 parent d243b21 commit 0ae966e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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 --provider azureopenai --vector-store 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-github-models.md

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

5454
```dotnetcli
55-
dotnet new aichatweb --framework net9.0 --AiServiceProvider githubmodels --VectorStore local
55+
dotnet new aichatweb --Framework net9.0 --provider githubmodels --vector-store local
5656
```
5757
5858
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 --provider ollama --vector-store 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 --provider openai --vector-store local
5757
```
5858
5959
The .NET CLI creates a new .NET 9.0 app with the configurations you specified.

0 commit comments

Comments
 (0)