Skip to content

Commit bbd145a

Browse files
authored
Merge branch 'main' into acaprivate
2 parents 7c0147a + b5b4090 commit bbd145a

File tree

9 files changed

+888
-534
lines changed

9 files changed

+888
-534
lines changed

.github/workflows/azure-dev.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -129,28 +129,13 @@ jobs:
129129
node-version: 18
130130

131131
- name: Log in with Azure (Federated Credentials)
132-
if: ${{ env.AZURE_CLIENT_ID != '' }}
133132
run: |
134133
azd auth login `
135134
--client-id "$Env:AZURE_CLIENT_ID" `
136135
--federated-credential-provider "github" `
137136
--tenant-id "$Env:AZURE_TENANT_ID"
138137
shell: pwsh
139138

140-
- name: Log in with Azure (Client Credentials)
141-
if: ${{ env.AZURE_CREDENTIALS != '' }}
142-
run: |
143-
$info = $Env:AZURE_CREDENTIALS | ConvertFrom-Json -AsHashtable;
144-
Write-Host "::add-mask::$($info.clientSecret)"
145-
146-
azd auth login `
147-
--client-id "$($info.clientId)" `
148-
--client-secret "$($info.clientSecret)" `
149-
--tenant-id "$($info.tenantId)"
150-
shell: pwsh
151-
env:
152-
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
153-
154139
- name: Provision Infrastructure
155140
run: azd provision --no-prompt
156141
env:

.github/workflows/evaluate.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ jobs:
159159
az account set --subscription ${{env.AZURE_SUBSCRIPTION_ID}}
160160
161161
- name: Login to with Azure with azd (Federated Credentials)
162-
if: ${{ env.AZURE_CLIENT_ID != '' }}
163162
run: |
164163
azd auth login `
165164
--client-id "$Env:AZURE_CLIENT_ID" `

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ You can find extensive documentation in the [docs](docs/README.md) folder:
262262
- [Sharing deployment environments](docs/sharing_environments.md)
263263
- [Local development](docs/localdev.md)
264264
- [Customizing the app](docs/customization.md)
265+
- [App architecture](docs/architecture.md)
265266
- [HTTP Protocol](docs/http_protocol.md)
266267
- [Data ingestion](docs/data_ingestion.md)
267268
- [Evaluation](docs/evaluation.md)

app/backend/requirements.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ aiofiles==24.1.0
44
# via
55
# prompty
66
# quart
7-
aiohappyeyeballs==2.4.4
7+
aiohappyeyeballs==2.6.1
88
# via aiohttp
9-
aiohttp==3.10.11
9+
aiohttp==3.12.14
1010
# via
1111
# -r requirements.in
1212
# microsoft-kiota-authentication-azure
13-
aiosignal==1.3.1
13+
aiosignal==1.4.0
1414
# via aiohttp
1515
annotated-types==0.7.0
1616
# via pydantic
@@ -125,7 +125,7 @@ hpack==4.0.0
125125
# via h2
126126
httpcore==1.0.9
127127
# via httpx
128-
httpx==0.27.0
128+
httpx[http2]==0.27.0
129129
# via
130130
# microsoft-kiota-http
131131
# msgraph-core
@@ -333,7 +333,9 @@ priority==2.0.0
333333
prompty==0.1.50
334334
# via -r requirements.in
335335
propcache==0.2.0
336-
# via yarl
336+
# via
337+
# aiohttp
338+
# yarl
337339
psutil==5.9.8
338340
# via azure-monitor-opentelemetry-exporter
339341
pycparser==2.22
@@ -344,7 +346,7 @@ pydantic-core==2.20.1
344346
# via pydantic
345347
pygments==2.18.0
346348
# via rich
347-
pyjwt==2.10.1
349+
pyjwt[crypto]==2.10.1
348350
# via
349351
# -r requirements.in
350352
# msal
@@ -386,7 +388,7 @@ sniffio==1.3.1
386388
# anyio
387389
# httpx
388390
# openai
389-
soupsieve==2.6
391+
soupsieve==2.7
390392
# via beautifulsoup4
391393
std-uritemplate==2.0.5
392394
# via microsoft-kiota-abstractions
@@ -411,6 +413,7 @@ types-pillow==10.2.0.20240822
411413
typing-extensions==4.13.2
412414
# via
413415
# -r requirements.in
416+
# aiosignal
414417
# anyio
415418
# asgiref
416419
# azure-ai-documentintelligence

0 commit comments

Comments
 (0)