Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding section for creating a new azd env. #2

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,25 @@ so that you can use the OpenAI API SDKs with keyless (Entra) authentication. By
```

This will use the OpenAI API SDK to make a request to the OpenAI API and print the response.


## Creating a new Azure OpenAI deployment

1. If you'd like to deploy a new Azure OpenAI deployment, the easiest way is to create a new `azd` environment for it.
Create a new environment and set it as the default by running:

```shell
azd env new <environment>
```

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a step like "Then run the commands above in #provisioning to provision the new Azure OpenAI resource and update your .env file." ?

2. You can view the new environment and any previous environments you created by looking in the `.azure` folder, or by running the command:

```shell
azd env list
```

3. To change back to the previous azd environment:

```shell
azd env select <environment>
```