Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
.azure
*_env

# Test files with credentials
test_auth.py

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
4 changes: 2 additions & 2 deletions app/backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ certifi==2024.7.4
# httpx
# msrest
# requests
cffi==1.17.0
cffi==1.16.0
# via cryptography
charset-normalizer==3.3.2
# via requests
Expand All @@ -86,7 +86,7 @@ click==8.3.0
# prompty
# quart
# uvicorn
cryptography==44.0.1
cryptography==42.0.7
# via
# -r requirements.in
# azure-identity
Expand Down
8 changes: 4 additions & 4 deletions app/frontend/src/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"chatEmptyStateTitle": "Chat with your data",
"chatEmptyStateSubtitle": "Ask anything or try an example",
"defaultExamples": {
"1": "What is included in my Northwind Health Plus plan that is not in standard?",
"2": "What happens in a performance review?",
"3": "What does a Product Manager do?",
"placeholder": "Type a new question (e.g. does my plan cover annual eye exams?)"
"1": "What are the guidelines for acceptable use of AI and ML tools?",
"2": "What is the company policy on conflicts of interest?",
"3": "What are the dos and don'ts for email communication?",
"placeholder": "Type a new question (e.g. what is the social media policy?)"
},
"askTitle": "Ask your data",
"multimodalExamples": {
Expand Down
14 changes: 7 additions & 7 deletions azure.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json

name: azure-search-openai-demo
name: azure-rag-auth
metadata:
template: [email protected]
requiredVersions:
Expand All @@ -20,24 +20,24 @@ services:
prepackage:
windows:
shell: pwsh
run: cd ../frontend;npm install;npm run build
run: ../../scripts/build_frontend.ps1
interactive: false
continueOnError: false
posix:
shell: sh
run: cd ../frontend;npm install;npm run build
run: ../../scripts/build_frontend.sh
interactive: false
continueOnError: false
# This hook is called when Azure Container Apps is the host
prebuild:
windows:
shell: pwsh
run: cd ../frontend;npm install;npm run build
run: ../../scripts/build_frontend.ps1
interactive: false
continueOnError: false
posix:
shell: sh
run: cd ../frontend;npm install;npm run build
run: ../../scripts/build_frontend.sh
interactive: false
continueOnError: false
hooks:
Expand All @@ -55,11 +55,11 @@ hooks:
postprovision:
windows:
shell: pwsh
run: ./scripts/auth_update.ps1;./scripts/prepdocs.ps1
run: ./scripts/auth_update.ps1 && ./scripts/prepdocs.ps1
interactive: true
continueOnError: false
posix:
shell: sh
run: ./scripts/auth_update.sh;./scripts/prepdocs.sh
run: ./scripts/auth_update.sh && ./scripts/prepdocs.sh
interactive: true
continueOnError: false
Binary file removed data/Benefit_Options.pdf
Binary file not shown.
48 changes: 0 additions & 48 deletions data/Contoso_Electronics_Company_Overview.md

This file was deleted.

14 changes: 0 additions & 14 deletions data/Json_Examples/2189.json

This file was deleted.

14 changes: 0 additions & 14 deletions data/Json_Examples/2190.json

This file was deleted.

14 changes: 0 additions & 14 deletions data/Json_Examples/2191.json

This file was deleted.

14 changes: 0 additions & 14 deletions data/Json_Examples/2192.json

This file was deleted.

Loading