├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github └── workflows │ └── auto_add_to_project.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── requirements.txt ├── session-delivery-resources └── README.md └── src ├── .env.sample ├── README.md ├── data ├── products │ ├── product_info_1.md │ ├── product_info_10.md │ ├── product_info_11.md │ ├── product_info_12.md │ ├── product_info_13.md │ ├── product_info_14.md │ ├── product_info_15.md │ ├── product_info_16.md │ ├── product_info_17.md │ ├── product_info_18.md │ ├── product_info_19.md │ ├── product_info_2.md │ ├── product_info_20.md │ ├── product_info_21.md │ ├── product_info_3.md │ ├── product_info_4.md │ ├── product_info_5.md │ ├── product_info_6.md │ ├── product_info_7.md │ ├── product_info_8.md │ └── product_info_9.md └── test_dataset.jsonl ├── demo1_get_started.md ├── demo2_prompt_engineering.md ├── demo3_add_your_own_data.md ├── demo4_evaluate_your_prototype.md ├── media ├── ai-studio-landing-page.png ├── app_output.png ├── app_traces.png ├── azure_rg.png ├── chat_playground.png ├── connected_resources_info.png ├── contoso_layout_sketch.jpg ├── deployments.png ├── hub_configuration.png ├── hub_overview.png ├── model_catalog.png ├── playground_config.png ├── prompt_catalog.png ├── recent-projects-section.png ├── split_editor_button.png └── upload_image.png ├── set_up.md ├── set_up.sh └── web_designer_app ├── create_website_copy.prompty ├── create_website_copy_request.py ├── eval_results.jsonl ├── generation_quality_eval.ipynb └── run_results.jsonl /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/auto_add_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/.github/workflows/auto_add_to_project.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/requirements.txt -------------------------------------------------------------------------------- /session-delivery-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/session-delivery-resources/README.md -------------------------------------------------------------------------------- /src/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/.env.sample -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/README.md -------------------------------------------------------------------------------- /src/data/products/product_info_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_1.md -------------------------------------------------------------------------------- /src/data/products/product_info_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_10.md -------------------------------------------------------------------------------- /src/data/products/product_info_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_11.md -------------------------------------------------------------------------------- /src/data/products/product_info_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_12.md -------------------------------------------------------------------------------- /src/data/products/product_info_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_13.md -------------------------------------------------------------------------------- /src/data/products/product_info_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_14.md -------------------------------------------------------------------------------- /src/data/products/product_info_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_15.md -------------------------------------------------------------------------------- /src/data/products/product_info_16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_16.md -------------------------------------------------------------------------------- /src/data/products/product_info_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_17.md -------------------------------------------------------------------------------- /src/data/products/product_info_18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_18.md -------------------------------------------------------------------------------- /src/data/products/product_info_19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_19.md -------------------------------------------------------------------------------- /src/data/products/product_info_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_2.md -------------------------------------------------------------------------------- /src/data/products/product_info_20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_20.md -------------------------------------------------------------------------------- /src/data/products/product_info_21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_21.md -------------------------------------------------------------------------------- /src/data/products/product_info_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_3.md -------------------------------------------------------------------------------- /src/data/products/product_info_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_4.md -------------------------------------------------------------------------------- /src/data/products/product_info_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_5.md -------------------------------------------------------------------------------- /src/data/products/product_info_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_6.md -------------------------------------------------------------------------------- /src/data/products/product_info_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_7.md -------------------------------------------------------------------------------- /src/data/products/product_info_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_8.md -------------------------------------------------------------------------------- /src/data/products/product_info_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/products/product_info_9.md -------------------------------------------------------------------------------- /src/data/test_dataset.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/data/test_dataset.jsonl -------------------------------------------------------------------------------- /src/demo1_get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/demo1_get_started.md -------------------------------------------------------------------------------- /src/demo2_prompt_engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/demo2_prompt_engineering.md -------------------------------------------------------------------------------- /src/demo3_add_your_own_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/demo3_add_your_own_data.md -------------------------------------------------------------------------------- /src/demo4_evaluate_your_prototype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/demo4_evaluate_your_prototype.md -------------------------------------------------------------------------------- /src/media/ai-studio-landing-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/ai-studio-landing-page.png -------------------------------------------------------------------------------- /src/media/app_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/app_output.png -------------------------------------------------------------------------------- /src/media/app_traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/app_traces.png -------------------------------------------------------------------------------- /src/media/azure_rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/azure_rg.png -------------------------------------------------------------------------------- /src/media/chat_playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/chat_playground.png -------------------------------------------------------------------------------- /src/media/connected_resources_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/connected_resources_info.png -------------------------------------------------------------------------------- /src/media/contoso_layout_sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/contoso_layout_sketch.jpg -------------------------------------------------------------------------------- /src/media/deployments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/deployments.png -------------------------------------------------------------------------------- /src/media/hub_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/hub_configuration.png -------------------------------------------------------------------------------- /src/media/hub_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/hub_overview.png -------------------------------------------------------------------------------- /src/media/model_catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/model_catalog.png -------------------------------------------------------------------------------- /src/media/playground_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/playground_config.png -------------------------------------------------------------------------------- /src/media/prompt_catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/prompt_catalog.png -------------------------------------------------------------------------------- /src/media/recent-projects-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/recent-projects-section.png -------------------------------------------------------------------------------- /src/media/split_editor_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/split_editor_button.png -------------------------------------------------------------------------------- /src/media/upload_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/media/upload_image.png -------------------------------------------------------------------------------- /src/set_up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/set_up.md -------------------------------------------------------------------------------- /src/set_up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/set_up.sh -------------------------------------------------------------------------------- /src/web_designer_app/create_website_copy.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/web_designer_app/create_website_copy.prompty -------------------------------------------------------------------------------- /src/web_designer_app/create_website_copy_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/web_designer_app/create_website_copy_request.py -------------------------------------------------------------------------------- /src/web_designer_app/eval_results.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/web_designer_app/eval_results.jsonl -------------------------------------------------------------------------------- /src/web_designer_app/generation_quality_eval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/web_designer_app/generation_quality_eval.ipynb -------------------------------------------------------------------------------- /src/web_designer_app/run_results.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-concept-to-creation-ai-studio/HEAD/src/web_designer_app/run_results.jsonl --------------------------------------------------------------------------------