├── .github └── workflows │ └── auto_add_to_project.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── img ├── Slide27.jpg └── session-banner.jpg ├── session-delivery-resources ├── README.md ├── demos │ ├── README.md │ ├── demo_1_Azure_AI_Foundry_portal.md │ ├── demo_2_getting_started_with_Prompty.md │ ├── demo_3_Prompty_API_configurations.md │ ├── demo_4_Prompty_and_Python.md │ ├── demo_5_Prompty_eval.md │ ├── demo_6_app_with_Prompty.md │ └── images │ │ ├── aifoundry-chat-playground.png │ │ ├── aifoundry-homepage.jpeg │ │ ├── aifoundry-newmodel.png │ │ ├── aifoundry-newproject.png │ │ ├── prompty-default.png │ │ ├── prompty-description-attributes.png │ │ ├── prompty-model-attributes.png │ │ ├── prompty-sample-inputs.png │ │ ├── prompty-system-iinstructions.png │ │ ├── prompty_extension.png │ │ ├── vscode-settings-json.png │ │ └── vscode-settings.png └── setup.md └── src ├── README.md └── intro-to-prompty ├── .env example ├── .gitignore ├── .promptflow └── eval │ └── flow.tools.json ├── basic.prompty ├── basic.py ├── basic_langchain.py ├── basic_promptflow.py ├── basic_sk.cs ├── eval.prompty └── requirements.txt /.github/workflows/auto_add_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/.github/workflows/auto_add_to_project.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /img/Slide27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/img/Slide27.jpg -------------------------------------------------------------------------------- /img/session-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/img/session-banner.jpg -------------------------------------------------------------------------------- /session-delivery-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/README.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/README.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/demo_1_Azure_AI_Foundry_portal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/demo_1_Azure_AI_Foundry_portal.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/demo_2_getting_started_with_Prompty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/demo_2_getting_started_with_Prompty.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/demo_3_Prompty_API_configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/demo_3_Prompty_API_configurations.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/demo_4_Prompty_and_Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/demo_4_Prompty_and_Python.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/demo_5_Prompty_eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/demo_5_Prompty_eval.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/demo_6_app_with_Prompty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/demo_6_app_with_Prompty.md -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/aifoundry-chat-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/aifoundry-chat-playground.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/aifoundry-homepage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/aifoundry-homepage.jpeg -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/aifoundry-newmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/aifoundry-newmodel.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/aifoundry-newproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/aifoundry-newproject.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/prompty-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/prompty-default.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/prompty-description-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/prompty-description-attributes.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/prompty-model-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/prompty-model-attributes.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/prompty-sample-inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/prompty-sample-inputs.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/prompty-system-iinstructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/prompty-system-iinstructions.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/prompty_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/prompty_extension.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/vscode-settings-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/vscode-settings-json.png -------------------------------------------------------------------------------- /session-delivery-resources/demos/images/vscode-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/demos/images/vscode-settings.png -------------------------------------------------------------------------------- /session-delivery-resources/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/session-delivery-resources/setup.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/README.md -------------------------------------------------------------------------------- /src/intro-to-prompty/.env example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/.env example -------------------------------------------------------------------------------- /src/intro-to-prompty/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .promptflow 3 | .runs -------------------------------------------------------------------------------- /src/intro-to-prompty/.promptflow/eval/flow.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/.promptflow/eval/flow.tools.json -------------------------------------------------------------------------------- /src/intro-to-prompty/basic.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/basic.prompty -------------------------------------------------------------------------------- /src/intro-to-prompty/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/basic.py -------------------------------------------------------------------------------- /src/intro-to-prompty/basic_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/basic_langchain.py -------------------------------------------------------------------------------- /src/intro-to-prompty/basic_promptflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/basic_promptflow.py -------------------------------------------------------------------------------- /src/intro-to-prompty/basic_sk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/basic_sk.cs -------------------------------------------------------------------------------- /src/intro-to-prompty/eval.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/eval.prompty -------------------------------------------------------------------------------- /src/intro-to-prompty/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-e2e-dev-with-prompty-and-ai-studio/HEAD/src/intro-to-prompty/requirements.txt --------------------------------------------------------------------------------