├── .gitignore ├── PracticePromptEngineeringScreenshot.png ├── PromptEngineeringWithDalleWebApp.sln ├── PromptEngineeringWithDalleWebApp ├── DalleImageResponse.cs ├── DalleRequest.cs ├── DalleResponse.cs ├── ImagePromptConfig.cs ├── ImagePromptConfig.json ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── PromptEngineeringWithDalleWebApp.csproj ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── img │ ├── ContentFilter.png │ ├── DALL·E 2022-05-18 10.10.35.png │ ├── DALL·E 2022-05-19 09.12.22.png │ ├── DALL·E 2023-02-14 09.49.12 - lake at sunset with snowflakes falling and pine trees in the background, high-quality digital art.png │ ├── DALL·E 2023-02-14 10.41.42 - huskies pulling a dogsled through the snow at sunset with snowflakes falling and pine trees in the background, digital art.png │ ├── DALL·E 2023-02-28 20.24.57 - Adorable teddy bear with big eyes who is sick, hugging a box of Kleenex, black background, cartoon.png │ ├── DALL·E 2023-03-01 14.23.53 - Pencil sketch of medieval princess wearing gown.png │ ├── Error.png │ └── clear.png │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/.gitignore -------------------------------------------------------------------------------- /PracticePromptEngineeringScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PracticePromptEngineeringScreenshot.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp.sln -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/DalleImageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/DalleImageResponse.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/DalleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/DalleRequest.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/DalleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/DalleResponse.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/ImagePromptConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/ImagePromptConfig.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/ImagePromptConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/ImagePromptConfig.json -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Error.cshtml -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Index.cshtml -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Program.cs -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/PromptEngineeringWithDalleWebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/PromptEngineeringWithDalleWebApp.csproj -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/appsettings.Development.json -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/appsettings.json -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/css/site.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/ContentFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/ContentFilter.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2022-05-18 10.10.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2022-05-18 10.10.35.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2022-05-19 09.12.22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2022-05-19 09.12.22.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-02-14 09.49.12 - lake at sunset with snowflakes falling and pine trees in the background, high-quality digital art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-02-14 09.49.12 - lake at sunset with snowflakes falling and pine trees in the background, high-quality digital art.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-02-14 10.41.42 - huskies pulling a dogsled through the snow at sunset with snowflakes falling and pine trees in the background, digital art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-02-14 10.41.42 - huskies pulling a dogsled through the snow at sunset with snowflakes falling and pine trees in the background, digital art.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-02-28 20.24.57 - Adorable teddy bear with big eyes who is sick, hugging a box of Kleenex, black background, cartoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-02-28 20.24.57 - Adorable teddy bear with big eyes who is sick, hugging a box of Kleenex, black background, cartoon.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-03-01 14.23.53 - Pencil sketch of medieval princess wearing gown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/DALL·E 2023-03-01 14.23.53 - Pencil sketch of medieval princess wearing gown.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/Error.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/img/clear.png -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/js/site.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/PromptEngineeringWithDalleWebApp/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/PromptEngineeringWithDalle/HEAD/README.md --------------------------------------------------------------------------------