├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── style.yaml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── assets ├── architecture.png ├── copy-number-hint.png └── screenshot.png ├── azd-hooks ├── deploy.sh ├── post-provision.ps1 └── post-provision.sh ├── azure.yaml ├── data ├── azure-app-service-docs.pdf ├── azure-container-apps-docs.pdf └── azure-container-registry-docs.pdf ├── infra ├── abbreviations.json ├── ai │ └── openai.bicep ├── architecture.drawio ├── core │ ├── app │ │ └── web.bicep │ ├── communicationservice │ │ └── communication-services.bicep │ ├── eventgrid │ │ └── eventgrid.bicep │ ├── host │ │ ├── container-apps-environment.bicep │ │ ├── container-apps.bicep │ │ └── container-registry.bicep │ ├── monitor │ │ ├── application_insights.bicep │ │ ├── log_analytics.bicep │ │ └── monitoring.bicep │ └── security │ │ ├── openai-access.bicep │ │ ├── registry-access.bicep │ │ └── security-main.bicep ├── definitions │ ├── datasource.json │ ├── index.json │ ├── indexer.json │ └── skillset.json ├── main.bicep ├── main.parameters.json └── scripts │ └── setupindex.ps1 ├── scripts └── upload_data.sh └── src └── app ├── .dockerignore ├── Dockerfile ├── app.py ├── backend ├── acs.py ├── azure.py ├── helpers.py ├── rtmt.py └── tools │ ├── rag │ └── ai_search.py │ └── tools.py ├── requirements.txt ├── static ├── abstract.jpg ├── app.js ├── index.html └── style.css └── system_prompt.md /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/.github/workflows/style.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/assets/architecture.png -------------------------------------------------------------------------------- /assets/copy-number-hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/assets/copy-number-hint.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /azd-hooks/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/azd-hooks/deploy.sh -------------------------------------------------------------------------------- /azd-hooks/post-provision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/azd-hooks/post-provision.ps1 -------------------------------------------------------------------------------- /azd-hooks/post-provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/azd-hooks/post-provision.sh -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/azure.yaml -------------------------------------------------------------------------------- /data/azure-app-service-docs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/data/azure-app-service-docs.pdf -------------------------------------------------------------------------------- /data/azure-container-apps-docs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/data/azure-container-apps-docs.pdf -------------------------------------------------------------------------------- /data/azure-container-registry-docs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/data/azure-container-registry-docs.pdf -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/ai/openai.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/ai/openai.bicep -------------------------------------------------------------------------------- /infra/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/architecture.drawio -------------------------------------------------------------------------------- /infra/core/app/web.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/app/web.bicep -------------------------------------------------------------------------------- /infra/core/communicationservice/communication-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/communicationservice/communication-services.bicep -------------------------------------------------------------------------------- /infra/core/eventgrid/eventgrid.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/eventgrid/eventgrid.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/host/container-apps-environment.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/host/container-apps.bicep -------------------------------------------------------------------------------- /infra/core/host/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/host/container-registry.bicep -------------------------------------------------------------------------------- /infra/core/monitor/application_insights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/monitor/application_insights.bicep -------------------------------------------------------------------------------- /infra/core/monitor/log_analytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/monitor/log_analytics.bicep -------------------------------------------------------------------------------- /infra/core/monitor/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/monitor/monitoring.bicep -------------------------------------------------------------------------------- /infra/core/security/openai-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/security/openai-access.bicep -------------------------------------------------------------------------------- /infra/core/security/registry-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/security/registry-access.bicep -------------------------------------------------------------------------------- /infra/core/security/security-main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/core/security/security-main.bicep -------------------------------------------------------------------------------- /infra/definitions/datasource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/definitions/datasource.json -------------------------------------------------------------------------------- /infra/definitions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/definitions/index.json -------------------------------------------------------------------------------- /infra/definitions/indexer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/definitions/indexer.json -------------------------------------------------------------------------------- /infra/definitions/skillset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/definitions/skillset.json -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/scripts/setupindex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/infra/scripts/setupindex.ps1 -------------------------------------------------------------------------------- /scripts/upload_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/scripts/upload_data.sh -------------------------------------------------------------------------------- /src/app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/.dockerignore -------------------------------------------------------------------------------- /src/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/Dockerfile -------------------------------------------------------------------------------- /src/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/app.py -------------------------------------------------------------------------------- /src/app/backend/acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/backend/acs.py -------------------------------------------------------------------------------- /src/app/backend/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/backend/azure.py -------------------------------------------------------------------------------- /src/app/backend/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/backend/helpers.py -------------------------------------------------------------------------------- /src/app/backend/rtmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/backend/rtmt.py -------------------------------------------------------------------------------- /src/app/backend/tools/rag/ai_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/backend/tools/rag/ai_search.py -------------------------------------------------------------------------------- /src/app/backend/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/backend/tools/tools.py -------------------------------------------------------------------------------- /src/app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/requirements.txt -------------------------------------------------------------------------------- /src/app/static/abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/static/abstract.jpg -------------------------------------------------------------------------------- /src/app/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/static/app.js -------------------------------------------------------------------------------- /src/app/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/static/index.html -------------------------------------------------------------------------------- /src/app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/static/style.css -------------------------------------------------------------------------------- /src/app/system_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/realtime-call-center-accelerator/HEAD/src/app/system_prompt.md --------------------------------------------------------------------------------