Skip to content

Commit 1d10b94

Browse files
committed
Add fixes to entrypoint and regions
1 parent b202e7c commit 1d10b94

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

infra/main.bicep

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,12 @@ param principalId string = ''
1717

1818
@minLength(1)
1919
@description('Location for the OpenAI resource')
20+
// Look for gpt-35-turbo 0125 on the availability table:
2021
// https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models#standard-deployment-model-availability
2122
@allowed([
22-
'australiaeast'
23-
'brazilsouth'
2423
'canadaeast'
25-
'eastus'
26-
'eastus2'
27-
'francecentral'
28-
'japaneast'
2924
'northcentralus'
30-
'norwayeast'
31-
'southafricanorth'
3225
'southcentralus'
33-
'southindia'
34-
'swedencentral'
35-
'switzerlandnorth'
36-
'uksouth'
37-
'westeurope'
38-
'westus'
3926
])
4027
@metadata({
4128
azd: {

src/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22
set -e
3-
python3 -m gunicorn fastapi_app:create_app()
3+
python3 -m gunicorn "fastapi_app:create_app()"

0 commit comments

Comments
 (0)