File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 16
16
]
17
17
}
18
18
},
19
- "postCreateCommand" : " python3 -m pip install -r requirements-dev.txt && python3 -m pip install - e src" ,
19
+ "postCreateCommand" : " python3 -m pip install -e src" ,
20
20
"remoteUser" : " vscode" ,
21
21
"hostRequirements" : {
22
22
"memory" : " 8gb"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ param location string = resourceGroup().location
4
4
param tags object = {}
5
5
@description ('The custom subdomain name used to access the API. Defaults to the value of the name parameter.' )
6
6
param customSubDomainName string = name
7
- param disableLocalAuth bool = true
7
+ param disableLocalAuth bool = false
8
8
param deployments array = []
9
9
param kind string = 'OpenAI'
10
10
//param kind string = 'AIServices'
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ param sku object = {
8
8
}
9
9
10
10
param authOptions object = {}
11
- param disableLocalAuth bool = true
11
+ param disableLocalAuth bool = false
12
12
param disabledDataExfiltrationOptions array = []
13
13
param encryptionWithCmk object = {
14
14
enforcement : 'Unspecified'
Original file line number Diff line number Diff line change @@ -3,16 +3,17 @@ name = "quartapp"
3
3
version = " 1.0.0"
4
4
description = " Create a simple chat app using Quart and Azure AI Agents"
5
5
dependencies = [
6
- " quart" ,
7
- " werkzeug" ,
8
- " gunicorn" ,
9
- " uvicorn[standard]" ,
6
+ " fastapi" ,
7
+ " gunicorn==22.0.0" ,
8
+ " uvicorn[standard]==0.29.0" ,
10
9
" openai" ,
11
- " azure-identity" ,
12
- " aiohttp" ,
13
- " python-dotenv" ,
14
- " pyyaml" ,
15
- " azure-ai-projects"
10
+ " azure-ai-inference[prompts]"
11
+ "azure-identity==1.19.0",
12
+ "aiohttp==3.11.1",
13
+ "azure-ai-projects",
14
+ "azure-core-tracing-opentelemetry",
15
+ "azure-monitor-opentelemetry",
16
+ "aazure-search-documents"
16
17
]
17
18
18
19
[build-system ]
You can’t perform that action at this time.
0 commit comments