├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── subtask.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── Create-Release.yml │ ├── broken-links-checker.yml │ ├── pr-title-checker.yml │ └── stale-bot.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Deployment ├── AdaptiveCards_PowerFXFormulas │ ├── ConversationStart.json │ ├── RelocationNextSteps.txt │ └── RelocationRequestSummary.txt ├── Data │ ├── An-overview-of-the-process-of-relocating-to-a-new-office-location.html │ ├── Benefits-Summary-for-Contoso-Dublin-Employees.html │ ├── Benefits-Summary-for-Contoso-Guangzhou-Employees.html │ ├── Benefits-Summary-for-Contoso-Helsinki-Employees.html │ ├── Benefits-Summary-for-Contoso-NewYork-Employees.html │ ├── Benefits-Summary-for-Contoso-Redmond-Employees.html │ ├── Template-Proposal.docx │ └── USAGE_GUIDANCE.md ├── Differentiators │ └── DIFFERENTIATORS.md ├── Images │ ├── adaptivecards.png │ ├── approvals.png │ ├── architecture.png │ ├── boosting.png │ ├── business-scenario.png │ ├── customerTruth.png │ ├── documentmanipulation.png │ ├── entities.png │ ├── generativeanswers.png │ ├── impactassessment.png │ ├── keyfeatures.png │ ├── landingpage.png │ ├── postcardinchat.png │ ├── postintobot.png │ ├── quick-deploy.png │ ├── relocationproposal.png │ ├── retrievevalue.png │ ├── routetotopics.png │ ├── slotfilling.png │ ├── snowknowledge.png │ ├── snowuser.png │ ├── solution-architecture.png │ ├── solution-overview.png │ ├── supporting-documentation.png │ ├── teamscard.png │ ├── trigger.png │ ├── triggeresult.png │ ├── triggerflow.png │ └── updatelocation.png ├── README.md └── Solution │ └── HRRelocationAgent_1_0_0_11.zip ├── FAQs.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md └── TRANSPARENCY_FAQ.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/subtask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/subtask.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/Create-Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/workflows/Create-Release.yml -------------------------------------------------------------------------------- /.github/workflows/broken-links-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/workflows/broken-links-checker.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/workflows/pr-title-checker.yml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.github/workflows/stale-bot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Deployment/AdaptiveCards_PowerFXFormulas/ConversationStart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/AdaptiveCards_PowerFXFormulas/ConversationStart.json -------------------------------------------------------------------------------- /Deployment/AdaptiveCards_PowerFXFormulas/RelocationNextSteps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/AdaptiveCards_PowerFXFormulas/RelocationNextSteps.txt -------------------------------------------------------------------------------- /Deployment/AdaptiveCards_PowerFXFormulas/RelocationRequestSummary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/AdaptiveCards_PowerFXFormulas/RelocationRequestSummary.txt -------------------------------------------------------------------------------- /Deployment/Data/An-overview-of-the-process-of-relocating-to-a-new-office-location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/An-overview-of-the-process-of-relocating-to-a-new-office-location.html -------------------------------------------------------------------------------- /Deployment/Data/Benefits-Summary-for-Contoso-Dublin-Employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/Benefits-Summary-for-Contoso-Dublin-Employees.html -------------------------------------------------------------------------------- /Deployment/Data/Benefits-Summary-for-Contoso-Guangzhou-Employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/Benefits-Summary-for-Contoso-Guangzhou-Employees.html -------------------------------------------------------------------------------- /Deployment/Data/Benefits-Summary-for-Contoso-Helsinki-Employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/Benefits-Summary-for-Contoso-Helsinki-Employees.html -------------------------------------------------------------------------------- /Deployment/Data/Benefits-Summary-for-Contoso-NewYork-Employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/Benefits-Summary-for-Contoso-NewYork-Employees.html -------------------------------------------------------------------------------- /Deployment/Data/Benefits-Summary-for-Contoso-Redmond-Employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/Benefits-Summary-for-Contoso-Redmond-Employees.html -------------------------------------------------------------------------------- /Deployment/Data/Template-Proposal.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/Template-Proposal.docx -------------------------------------------------------------------------------- /Deployment/Data/USAGE_GUIDANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Data/USAGE_GUIDANCE.md -------------------------------------------------------------------------------- /Deployment/Differentiators/DIFFERENTIATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Differentiators/DIFFERENTIATORS.md -------------------------------------------------------------------------------- /Deployment/Images/adaptivecards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/adaptivecards.png -------------------------------------------------------------------------------- /Deployment/Images/approvals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/approvals.png -------------------------------------------------------------------------------- /Deployment/Images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/architecture.png -------------------------------------------------------------------------------- /Deployment/Images/boosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/boosting.png -------------------------------------------------------------------------------- /Deployment/Images/business-scenario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/business-scenario.png -------------------------------------------------------------------------------- /Deployment/Images/customerTruth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/customerTruth.png -------------------------------------------------------------------------------- /Deployment/Images/documentmanipulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/documentmanipulation.png -------------------------------------------------------------------------------- /Deployment/Images/entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/entities.png -------------------------------------------------------------------------------- /Deployment/Images/generativeanswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/generativeanswers.png -------------------------------------------------------------------------------- /Deployment/Images/impactassessment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/impactassessment.png -------------------------------------------------------------------------------- /Deployment/Images/keyfeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/keyfeatures.png -------------------------------------------------------------------------------- /Deployment/Images/landingpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/landingpage.png -------------------------------------------------------------------------------- /Deployment/Images/postcardinchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/postcardinchat.png -------------------------------------------------------------------------------- /Deployment/Images/postintobot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/postintobot.png -------------------------------------------------------------------------------- /Deployment/Images/quick-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/quick-deploy.png -------------------------------------------------------------------------------- /Deployment/Images/relocationproposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/relocationproposal.png -------------------------------------------------------------------------------- /Deployment/Images/retrievevalue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/retrievevalue.png -------------------------------------------------------------------------------- /Deployment/Images/routetotopics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/routetotopics.png -------------------------------------------------------------------------------- /Deployment/Images/slotfilling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/slotfilling.png -------------------------------------------------------------------------------- /Deployment/Images/snowknowledge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/snowknowledge.png -------------------------------------------------------------------------------- /Deployment/Images/snowuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/snowuser.png -------------------------------------------------------------------------------- /Deployment/Images/solution-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/solution-architecture.png -------------------------------------------------------------------------------- /Deployment/Images/solution-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/solution-overview.png -------------------------------------------------------------------------------- /Deployment/Images/supporting-documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/supporting-documentation.png -------------------------------------------------------------------------------- /Deployment/Images/teamscard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/teamscard.png -------------------------------------------------------------------------------- /Deployment/Images/trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/trigger.png -------------------------------------------------------------------------------- /Deployment/Images/triggeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/triggeresult.png -------------------------------------------------------------------------------- /Deployment/Images/triggerflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/triggerflow.png -------------------------------------------------------------------------------- /Deployment/Images/updatelocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Images/updatelocation.png -------------------------------------------------------------------------------- /Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/README.md -------------------------------------------------------------------------------- /Deployment/Solution/HRRelocationAgent_1_0_0_11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/Deployment/Solution/HRRelocationAgent_1_0_0_11.zip -------------------------------------------------------------------------------- /FAQs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/FAQs.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /TRANSPARENCY_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/agent-for-hr-service-solution-accelerator/HEAD/TRANSPARENCY_FAQ.md --------------------------------------------------------------------------------