Skip to content

Commit 46d3aab

Browse files
committed
fix pyproject
1 parent ec1c6c4 commit 46d3aab

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
]
1717
}
1818
},
19-
"postCreateCommand": "python3 -m pip install -r requirements-dev.txt && python3 -m pip install -e src",
19+
"postCreateCommand": "python3 -m pip install -e src",
2020
"remoteUser": "vscode",
2121
"hostRequirements": {
2222
"memory": "8gb"

infra/core/ai/cognitiveservices.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ param location string = resourceGroup().location
44
param tags object = {}
55
@description('The custom subdomain name used to access the API. Defaults to the value of the name parameter.')
66
param customSubDomainName string = name
7-
param disableLocalAuth bool = true
7+
param disableLocalAuth bool = false
88
param deployments array = []
99
param kind string = 'OpenAI'
1010
//param kind string = 'AIServices'

infra/core/search/search-services.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ param sku object = {
88
}
99

1010
param authOptions object = {}
11-
param disableLocalAuth bool = true
11+
param disableLocalAuth bool = false
1212
param disabledDataExfiltrationOptions array = []
1313
param encryptionWithCmk object = {
1414
enforcement: 'Unspecified'

src/pyproject.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ name = "quartapp"
33
version = "1.0.0"
44
description = "Create a simple chat app using Quart and Azure AI Agents"
55
dependencies = [
6-
"quart",
7-
"werkzeug",
8-
"gunicorn",
9-
"uvicorn[standard]",
6+
"fastapi",
7+
"gunicorn==22.0.0",
8+
"uvicorn[standard]==0.29.0",
109
"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"
1617
]
1718

1819
[build-system]

0 commit comments

Comments
 (0)