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
Copy file name to clipboardExpand all lines: README.md
+5-15Lines changed: 5 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,8 @@ The app code runs in Azure Container apps to process the user input and generate
25
25
26
26
### Quick Deploy
27
27
28
-
|[](https://codespaces.new/Azure-Samples/get-started-with-ai-agents)|[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/Azure-Samples/get-started-with-ai-agents)|[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fget-started-with-ai-agents%2Frefs%2Fheads%2Fhowie%2Ffix-deploy-to-azure%2Finfra%2Fmain.json)|
29
-
|---|---|---|
28
+
|[](https://codespaces.new/Azure-Samples/get-started-with-ai-agents)|[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/Azure-Samples/get-started-with-ai-agents)|
29
+
|---|---|
30
30
31
31
Github Codespaces and Dev Containers both allow you to download and deploy the code for development. You can also continue with local development. Once you have selected your environment, follow the instructions below to customize and deploy your solution.
32
32
@@ -246,7 +246,7 @@ Once you've opened the project in [Codespaces](#github-codespaces) or in [Dev Co
246
246
```
247
247
⚠️ If you do not increase your quota, you may encounter rate limit issues. If needed, you can increase the quota after deployment by editing your model in the Models and Endpoints tab of the [Azure AI Foundry Portal](https://ai.azure.com/).
248
248
249
-
3. Provision and deploy all the resources by running the following in get-started-with-ai-agents directory:
249
+
3. Provision and deploy all the resources with public docker image `azdtemplate.azurecr.io/get-start-with-ai-agents:latest` by running the following in get-started-with-ai-agents directory:
250
250
251
251
```shell
252
252
azd up
@@ -273,20 +273,10 @@ Once you've opened the project in [Codespaces](#github-codespaces) or in [Dev Co
273
273
* In the [Azure Portal](https://portal.azure.com/), navigate to your environment's resource group. The name will be `rg-[your environment name]`. Here, you should see your container app, storage account, and all of the other [resources](#resources) that are created in the deployment.
274
274
* In the [Azure AI Foundry Portal](https://ai.azure.com/), select your project. If you navigate to the Assistants tab, you should be able to view your new assistant, named `agent-template-assistant`. If you navigate to the Models and Endpoints tab, you should see your AI Services connection with your model deployments.
275
275
276
-
7. (Optional) If you make further modification to the app code, you can deploy the updated version with:
276
+
7. (Optional) You can use a local development server to test app changes locally. To do so, follow the steps in [local deployment server](#local-development-server) after your app is deployed.
277
277
278
-
```shell
279
-
azd deploy
280
-
```
281
-
You can get more detailed output with the ```--debug``` parameter.
282
-
```shell
283
-
azd deploy --debug
284
-
```
285
-
>**Important:**
286
-
>
287
-
>Check carefully for any errors during deployment and the startup phase of the Azure Container App. If the container fails to start correctly after deployment, the application changes you made will not take effect, and Azure Container Apps will continue serving requests from the previous stable revision.
278
+
8. (Optional) Follow this [tutorial](https://learn.microsoft.com/en-us/azure/container-registry/container-registry-tutorial-quick-task) to build your changes into a Docker image and deploy to Azure Container App.
288
279
289
-
8. (Optional) You can use a local development server to test app changes locally. To do so, follow the steps in [local deployment server](#local-development-server) after your app is deployed.
0 commit comments