You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Purpose
Changed the readme to use http for local usage so it works properly on
DevContainers and Linux when there is not SSL cert on the machine. Also
updated the readme to reflect the sample uses Turbo and not Davinci.
## Does this introduce a breaking change?
[ ] Yes
[X ] No
## Pull Request Type
What kind of change does this Pull Request introduce?
[ ] Bugfix
[ ] Feature
[ ] Code style update (formatting, local variables)
[ ] Refactoring (no functional changes, no api changes)
[ X] Documentation content changes
[ ] Other... Please describe:
```
## How to Test
* Get the code
```
git clone [repo-address]
cd [repo-name]
git checkout [branch-name]
npm install
```
* Test the code
<!-- Add steps to run the tests suite and/or manually test -->
```
```
## What to Check
Verify that the following are valid
* ...
## Other Information
<!-- Add any other helpful information that may be needed here. -->
Co-authored-by: Scott Hunter <[email protected]>
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ You can run this repo virtually by using GitHub Codespaces or VS Code Remote Con
65
65
1. Create a new folder and switch to it in the terminal
66
66
1. Run `azd auth login`
67
67
1. Run `azd init -t azure-search-openai-demo-csharp`
68
-
* For the target location, the regions that currently support the models used in this sample are **East US** or **South Central US**. For an up-to-date list of regions and models, check [here](https://learn.microsoft.com/azure/cognitive-services/openai/concepts/models)
68
+
* For the target location, the regions that currently support the model used in this sample are **East US** or **South Central US**. For an up-to-date list of regions and models, check [here](https://learn.microsoft.com/azure/cognitive-services/openai/concepts/models)
69
69
70
70
#### Starting from scratch
71
71
@@ -74,7 +74,7 @@ Execute the following command, if you don't have any pre-existing Azure services
74
74
1. Run `azd up` - This will provision Azure resources and deploy this sample to those resources, including building the search index based on the files found in the `./data` folder.
75
75
76
76
> **Note**<br>
77
-
> This application uses the `text-davinci-003` and `gpt-35-turbo`models. When choosing which region to deploy to, make sure they're available in that region (i.e. EastUS). For more information, see the [Azure OpenAI Service documentation](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/concepts/models#gpt-3-models-1).
77
+
> This application uses the `gpt-35-turbo`model. When choosing which region to deploy to, make sure they're available in that region (i.e. EastUS). For more information, see the [Azure OpenAI Service documentation](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/concepts/models#gpt-3-models-1).
78
78
79
79
1. After the application has been successfully deployed you will see a URL printed to the console. Click that URL to interact with the application in your browser.
80
80
@@ -138,10 +138,10 @@ It will look like the following:
138
138
1. Run the following .NET CLI command to start the ASP.NET Core Minimal API server (client host):
139
139
140
140
```dotnetcli
141
-
dotnet run --project ./app/backend/MinimalApi.csproj --urls=https://localhost:7181/
141
+
dotnet run --project ./app/backend/MinimalApi.csproj --urls=http://localhost:7181/
142
142
```
143
143
144
-
Navigate to <https://localhost:7181>, and test out the app.
144
+
Navigate to <http://localhost:7181>, and test out the app.
145
145
146
146
#### Sharing Environments
147
147
@@ -159,7 +159,7 @@ Run `azd down`
159
159
### Quickstart
160
160
161
161
* In Azure: navigate to the Azure Static Web App deployed by `azd`. The URL is printed out when `azd` completes (as "Endpoint"), or you can find it in the Azure portal.
162
-
* When running locally, navigate to <https://localhost:7181> for the client app and <https://localhost:7181/swagger> for the Open API server page.
162
+
* When running locally, navigate to <http://localhost:7181> for the client app and <http://localhost:7181/swagger> for the Open API server page.
0 commit comments