├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github └── workflows │ └── auto_add_to_project.yml ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── database ├── contoso-sales.db ├── data-generator │ ├── generate_sql.py │ └── populate_sales_data.sql └── sales_data.sqbpro ├── datasheet └── contoso-tents-datasheet.pdf ├── requirements.txt └── session-delivery-resources ├── README.md ├── demo-1 ├── README.md ├── datasheet │ └── contoso-tents-datasheet.pdf └── media │ ├── ai-studio-assistants-setup.png │ ├── download-excel.png │ ├── help.png │ ├── ignore-the-other-category.png │ ├── list-regions.png │ ├── product-types.png │ ├── products-with-highest-discounts.png │ ├── sales-of-surf-gear-stacked-by-region.jpg │ ├── sales-trends-for-ski-gear.png │ ├── show-bar-chart-asia-sales.png │ ├── ski-related-gear-sales.png │ ├── ski-related-gear.png │ ├── top-3-selling-categories-by-region.png │ ├── top-5-selling-products-by-region.png │ ├── top-selling-product-categories-by-region.png │ ├── total-sales-asia.png │ ├── total-sales-by-region-as-table.png │ ├── total-sales-by-region.png │ ├── total-sales-for-asia-by-category-hover-code-generated.png │ └── youtube-banner.png ├── demo-2 └── README.md ├── demo-3 └── README.md ├── demo-4 └── README.md └── demo-5 └── README.md /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/auto_add_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/.github/workflows/auto_add_to_project.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "peacock.remoteColor": "#007fff" 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /database/contoso-sales.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/database/contoso-sales.db -------------------------------------------------------------------------------- /database/data-generator/generate_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/database/data-generator/generate_sql.py -------------------------------------------------------------------------------- /database/data-generator/populate_sales_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/database/data-generator/populate_sales_data.sql -------------------------------------------------------------------------------- /database/sales_data.sqbpro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/database/sales_data.sqbpro -------------------------------------------------------------------------------- /datasheet/contoso-tents-datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/datasheet/contoso-tents-datasheet.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/requirements.txt -------------------------------------------------------------------------------- /session-delivery-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/README.md -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/README.md -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/datasheet/contoso-tents-datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/datasheet/contoso-tents-datasheet.pdf -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/ai-studio-assistants-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/ai-studio-assistants-setup.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/download-excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/download-excel.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/help.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/ignore-the-other-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/ignore-the-other-category.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/list-regions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/list-regions.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/product-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/product-types.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/products-with-highest-discounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/products-with-highest-discounts.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/sales-of-surf-gear-stacked-by-region.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/sales-of-surf-gear-stacked-by-region.jpg -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/sales-trends-for-ski-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/sales-trends-for-ski-gear.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/show-bar-chart-asia-sales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/show-bar-chart-asia-sales.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/ski-related-gear-sales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/ski-related-gear-sales.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/ski-related-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/ski-related-gear.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/top-3-selling-categories-by-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/top-3-selling-categories-by-region.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/top-5-selling-products-by-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/top-5-selling-products-by-region.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/top-selling-product-categories-by-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/top-selling-product-categories-by-region.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/total-sales-asia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/total-sales-asia.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/total-sales-by-region-as-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/total-sales-by-region-as-table.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/total-sales-by-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/total-sales-by-region.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/total-sales-for-asia-by-category-hover-code-generated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/total-sales-for-asia-by-category-hover-code-generated.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-1/media/youtube-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-1/media/youtube-banner.png -------------------------------------------------------------------------------- /session-delivery-resources/demo-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-2/README.md -------------------------------------------------------------------------------- /session-delivery-resources/demo-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-3/README.md -------------------------------------------------------------------------------- /session-delivery-resources/demo-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-4/README.md -------------------------------------------------------------------------------- /session-delivery-resources/demo-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-azure-openai-assistants/HEAD/session-delivery-resources/demo-5/README.md --------------------------------------------------------------------------------