├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── azd-hooks ├── deploy.sh └── post-provision.sh ├── azure.yaml ├── img ├── architecture.drawio ├── architecture.png ├── logo.jpeg └── screenshot.png ├── infra ├── abbreviations.json ├── acs │ └── acs.bicep ├── ai │ └── openai.bicep ├── core │ ├── app │ │ └── web.bicep │ ├── data │ │ └── cosmosdb.bicep │ ├── host │ │ ├── container-apps-environment.bicep │ │ ├── container-apps.bicep │ │ └── container-registry.bicep │ ├── monitor │ │ ├── application_insights.bicep │ │ ├── log_analytics.bicep │ │ └── monitoring.bicep │ └── security │ │ ├── database-access.bicep │ │ ├── openai-access.bicep │ │ ├── registry-access.bicep │ │ └── security-main.bicep ├── main.bicep └── main.parameters.json └── src └── app ├── .dockerignore ├── Dockerfile ├── acs ├── __init__.py └── caller.py ├── app.py ├── backend ├── __init__.py ├── rtmt.py └── tools.py ├── reportstore ├── __init__.py ├── cosmosdb.py └── templates.json ├── requirements.txt └── static ├── abstract.jpg ├── app.js ├── index.html ├── light-robot.jpg └── style.css /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azd-hooks/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/azd-hooks/deploy.sh -------------------------------------------------------------------------------- /azd-hooks/post-provision.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Deployed environment $AZURE_ENV_NAME successfully." -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/azure.yaml -------------------------------------------------------------------------------- /img/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/img/architecture.drawio -------------------------------------------------------------------------------- /img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/img/architecture.png -------------------------------------------------------------------------------- /img/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/img/logo.jpeg -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/acs/acs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/acs/acs.bicep -------------------------------------------------------------------------------- /infra/ai/openai.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/ai/openai.bicep -------------------------------------------------------------------------------- /infra/core/app/web.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/app/web.bicep -------------------------------------------------------------------------------- /infra/core/data/cosmosdb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/data/cosmosdb.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/host/container-apps-environment.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/host/container-apps.bicep -------------------------------------------------------------------------------- /infra/core/host/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/host/container-registry.bicep -------------------------------------------------------------------------------- /infra/core/monitor/application_insights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/monitor/application_insights.bicep -------------------------------------------------------------------------------- /infra/core/monitor/log_analytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/monitor/log_analytics.bicep -------------------------------------------------------------------------------- /infra/core/monitor/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/monitor/monitoring.bicep -------------------------------------------------------------------------------- /infra/core/security/database-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/security/database-access.bicep -------------------------------------------------------------------------------- /infra/core/security/openai-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/security/openai-access.bicep -------------------------------------------------------------------------------- /infra/core/security/registry-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/security/registry-access.bicep -------------------------------------------------------------------------------- /infra/core/security/security-main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/core/security/security-main.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /src/app/.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | __pycache__ -------------------------------------------------------------------------------- /src/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/Dockerfile -------------------------------------------------------------------------------- /src/app/acs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/acs/caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/acs/caller.py -------------------------------------------------------------------------------- /src/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/app.py -------------------------------------------------------------------------------- /src/app/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/backend/rtmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/backend/rtmt.py -------------------------------------------------------------------------------- /src/app/backend/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/backend/tools.py -------------------------------------------------------------------------------- /src/app/reportstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/reportstore/cosmosdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/reportstore/cosmosdb.py -------------------------------------------------------------------------------- /src/app/reportstore/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/reportstore/templates.json -------------------------------------------------------------------------------- /src/app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/requirements.txt -------------------------------------------------------------------------------- /src/app/static/abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/static/abstract.jpg -------------------------------------------------------------------------------- /src/app/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/static/app.js -------------------------------------------------------------------------------- /src/app/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/static/index.html -------------------------------------------------------------------------------- /src/app/static/light-robot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/static/light-robot.jpg -------------------------------------------------------------------------------- /src/app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/on-the-road-copilot/HEAD/src/app/static/style.css --------------------------------------------------------------------------------