├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── README.md │ ├── azure-dev.yml │ ├── pr-gate.yml │ └── pr_event.json ├── .gitignore ├── .husky └── commit-msg ├── .vscode └── launch.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── azure.yaml ├── commitlint.config.js ├── images ├── agents_architecture.png ├── ai_evaluations.png ├── app_preview.png ├── architecture.vsdx ├── container_architecture.png └── notebook_preview.png ├── infra ├── README.md ├── aoiabing │ └── openAi_bingSearch.module.bicep ├── main.bicep ├── main.parameters.json ├── resources.bicep └── vectorSearch │ └── vectorSearch.module.bicep ├── package.json └── src ├── ChatApp.AppHost ├── BicepTemplates │ └── openAi_bingSearch.module.bicep ├── ChatApp.AppHost.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.json ├── infra │ ├── backend.tmpl.yaml │ └── frontend.tmpl.yaml └── next-steps.md ├── ChatApp.EvaluationTests ├── .config │ └── dotnet-tools.json ├── ChatApp.EvaluationTests.csproj ├── EvalInput.cs ├── EvaluationTests.cs ├── Extensions │ └── DistributedApplicationHostingTestingExtensions.cs ├── Settings.cs └── appsettings.json ├── ChatApp.React ├── .eslintrc.cjs ├── .gitignore ├── Dockerfile ├── INSTRUCTIONS.md ├── README.md ├── default.conf.template ├── index.html ├── package-lock.json ├── package.json ├── public │ └── icon.svg ├── src │ ├── App.module.css │ ├── App.tsx │ ├── Chat.module.css │ ├── Chat.tsx │ ├── Readme.module.css │ ├── Readme.tsx │ ├── assets │ │ └── caution.svg │ ├── globals.d.ts │ ├── main.tsx │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── ChatApp.ServiceDefaults ├── ChatApp.ServiceDefaults.csproj ├── Clients │ └── Backend │ │ └── BackendClient.cs ├── Contracts │ ├── AIChatCompletion.cs │ ├── AIChatCompletionDelta.cs │ ├── AIChatMessage.cs │ ├── AIChatMessageDelta.cs │ ├── AIChatRequest.cs │ ├── AIChatRole.cs │ └── CreateWriterMessage.cs ├── Converters │ └── JsonCamelCaseEnumConverter.cs └── Extensions.cs ├── ChatApp.WebApi ├── Agents │ ├── CreativeWriterApp.cs │ ├── CreativeWriterSession.cs │ └── Prompts │ │ ├── editor.yaml │ │ ├── marketing.yaml │ │ ├── researcher.yaml │ │ └── writer.yaml ├── ChatApp.WebApi.csproj ├── Controllers │ └── ChatController.cs ├── Model │ └── ProductDataModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── appsettings.json ├── ChatApp.sln ├── data ├── Sample Upload.ipynb ├── appsettings.json ├── products.csv └── test │ └── eval_inputs.json └── experiments ├── 00 WriterReviewer.ipynb ├── 01 CreativeWritingAssistant.ipynb └── appsettings.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/azure-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/workflows/azure-dev.yml -------------------------------------------------------------------------------- /.github/workflows/pr-gate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/workflows/pr-gate.yml -------------------------------------------------------------------------------- /.github/workflows/pr_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.github/workflows/pr_event.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/azure.yaml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | export default { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /images/agents_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/images/agents_architecture.png -------------------------------------------------------------------------------- /images/ai_evaluations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/images/ai_evaluations.png -------------------------------------------------------------------------------- /images/app_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/images/app_preview.png -------------------------------------------------------------------------------- /images/architecture.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/images/architecture.vsdx -------------------------------------------------------------------------------- /images/container_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/images/container_architecture.png -------------------------------------------------------------------------------- /images/notebook_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/images/notebook_preview.png -------------------------------------------------------------------------------- /infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/infra/README.md -------------------------------------------------------------------------------- /infra/aoiabing/openAi_bingSearch.module.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/infra/aoiabing/openAi_bingSearch.module.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/resources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/infra/resources.bicep -------------------------------------------------------------------------------- /infra/vectorSearch/vectorSearch.module.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/infra/vectorSearch/vectorSearch.module.bicep -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/package.json -------------------------------------------------------------------------------- /src/ChatApp.AppHost/BicepTemplates/openAi_bingSearch.module.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/BicepTemplates/openAi_bingSearch.module.bicep -------------------------------------------------------------------------------- /src/ChatApp.AppHost/ChatApp.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/ChatApp.AppHost.csproj -------------------------------------------------------------------------------- /src/ChatApp.AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/Program.cs -------------------------------------------------------------------------------- /src/ChatApp.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ChatApp.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/appsettings.json -------------------------------------------------------------------------------- /src/ChatApp.AppHost/infra/backend.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/infra/backend.tmpl.yaml -------------------------------------------------------------------------------- /src/ChatApp.AppHost/infra/frontend.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/infra/frontend.tmpl.yaml -------------------------------------------------------------------------------- /src/ChatApp.AppHost/next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.AppHost/next-steps.md -------------------------------------------------------------------------------- /src/ChatApp.EvaluationTests/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.EvaluationTests/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/ChatApp.EvaluationTests/ChatApp.EvaluationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.EvaluationTests/ChatApp.EvaluationTests.csproj -------------------------------------------------------------------------------- /src/ChatApp.EvaluationTests/EvalInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.EvaluationTests/EvalInput.cs -------------------------------------------------------------------------------- /src/ChatApp.EvaluationTests/EvaluationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.EvaluationTests/EvaluationTests.cs -------------------------------------------------------------------------------- /src/ChatApp.EvaluationTests/Extensions/DistributedApplicationHostingTestingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.EvaluationTests/Extensions/DistributedApplicationHostingTestingExtensions.cs -------------------------------------------------------------------------------- /src/ChatApp.EvaluationTests/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.EvaluationTests/Settings.cs -------------------------------------------------------------------------------- /src/ChatApp.EvaluationTests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.EvaluationTests/appsettings.json -------------------------------------------------------------------------------- /src/ChatApp.React/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/.eslintrc.cjs -------------------------------------------------------------------------------- /src/ChatApp.React/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/.gitignore -------------------------------------------------------------------------------- /src/ChatApp.React/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/Dockerfile -------------------------------------------------------------------------------- /src/ChatApp.React/INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/INSTRUCTIONS.md -------------------------------------------------------------------------------- /src/ChatApp.React/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/README.md -------------------------------------------------------------------------------- /src/ChatApp.React/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/default.conf.template -------------------------------------------------------------------------------- /src/ChatApp.React/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/index.html -------------------------------------------------------------------------------- /src/ChatApp.React/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/package-lock.json -------------------------------------------------------------------------------- /src/ChatApp.React/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/package.json -------------------------------------------------------------------------------- /src/ChatApp.React/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/public/icon.svg -------------------------------------------------------------------------------- /src/ChatApp.React/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/App.module.css -------------------------------------------------------------------------------- /src/ChatApp.React/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/App.tsx -------------------------------------------------------------------------------- /src/ChatApp.React/src/Chat.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/Chat.module.css -------------------------------------------------------------------------------- /src/ChatApp.React/src/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/Chat.tsx -------------------------------------------------------------------------------- /src/ChatApp.React/src/Readme.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/Readme.module.css -------------------------------------------------------------------------------- /src/ChatApp.React/src/Readme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/Readme.tsx -------------------------------------------------------------------------------- /src/ChatApp.React/src/assets/caution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/assets/caution.svg -------------------------------------------------------------------------------- /src/ChatApp.React/src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/globals.d.ts -------------------------------------------------------------------------------- /src/ChatApp.React/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/src/main.tsx -------------------------------------------------------------------------------- /src/ChatApp.React/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/ChatApp.React/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/tsconfig.app.json -------------------------------------------------------------------------------- /src/ChatApp.React/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/tsconfig.json -------------------------------------------------------------------------------- /src/ChatApp.React/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/tsconfig.node.json -------------------------------------------------------------------------------- /src/ChatApp.React/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.React/vite.config.ts -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/ChatApp.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/ChatApp.ServiceDefaults.csproj -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Clients/Backend/BackendClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Clients/Backend/BackendClient.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Contracts/AIChatCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Contracts/AIChatCompletion.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Contracts/AIChatCompletionDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Contracts/AIChatCompletionDelta.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Contracts/AIChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Contracts/AIChatMessage.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Contracts/AIChatMessageDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Contracts/AIChatMessageDelta.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Contracts/AIChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Contracts/AIChatRequest.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Contracts/AIChatRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Contracts/AIChatRole.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Contracts/CreateWriterMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Contracts/CreateWriterMessage.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Converters/JsonCamelCaseEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Converters/JsonCamelCaseEnumConverter.cs -------------------------------------------------------------------------------- /src/ChatApp.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Agents/CreativeWriterApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Agents/CreativeWriterApp.cs -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Agents/CreativeWriterSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Agents/CreativeWriterSession.cs -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Agents/Prompts/editor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Agents/Prompts/editor.yaml -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Agents/Prompts/marketing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Agents/Prompts/marketing.yaml -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Agents/Prompts/researcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Agents/Prompts/researcher.yaml -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Agents/Prompts/writer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Agents/Prompts/writer.yaml -------------------------------------------------------------------------------- /src/ChatApp.WebApi/ChatApp.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/ChatApp.WebApi.csproj -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Controllers/ChatController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Controllers/ChatController.cs -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Model/ProductDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Model/ProductDataModel.cs -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Program.cs -------------------------------------------------------------------------------- /src/ChatApp.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ChatApp.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.WebApi/appsettings.json -------------------------------------------------------------------------------- /src/ChatApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/ChatApp.sln -------------------------------------------------------------------------------- /src/data/Sample Upload.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/data/Sample Upload.ipynb -------------------------------------------------------------------------------- /src/data/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/data/appsettings.json -------------------------------------------------------------------------------- /src/data/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/data/products.csv -------------------------------------------------------------------------------- /src/data/test/eval_inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/data/test/eval_inputs.json -------------------------------------------------------------------------------- /src/experiments/00 WriterReviewer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/experiments/00 WriterReviewer.ipynb -------------------------------------------------------------------------------- /src/experiments/01 CreativeWritingAssistant.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/experiments/01 CreativeWritingAssistant.ipynb -------------------------------------------------------------------------------- /src/experiments/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/aspire-semantic-kernel-creative-writer/HEAD/src/experiments/appsettings.json --------------------------------------------------------------------------------