Skip to content

Setup Healthcare Bot landscape to provide organizations with Virtual Health Assistants

License

Notifications You must be signed in to change notification settings

microsoft/VirtualHealthcareBlueprint

Repository files navigation

Automated Healthcare Bot deployment

HealthCare bot

Overview

This repo will allow you to automate the deployment of Healthcare Bot instance on your own Azure account and linked to your Azure subscription that will also include the LUIS (Language understanding) resources with a sample LUIS model and Application Insights Instrumentation key configured.

Prerequisites

  1. Clone this repository to your local drive
git clone https://github.com/microsoft/VirtualHealthcareBlueprint
cd VirtualHealthcareBlueprint
  1. Install the Azure PowerShell Az module

  2. Connect to your Azure Subscription

Login-AzAccount
Set-AzContext -Subscription <Your Subscription Name>

Create Healthcare Bot resources

  1. Create the Resource Group that will contain the supporting resources. These will include:
    • Application Insights
    • LUIS Authoring account
    • LUIS Prediction account
$rg = New-AzResourceGroup -Name <service Name> -Location eastus
  1. Assign Healthcare Bot service name. This will be used to derive all the other resource names.
$botServiceName = "<healthcare bot service>"
  1. Load the marketplace script
. .\scripts\marketplace.ps1
  1. Create the Healthcare Bot Azure Marketplace SaaS Application. Available plans are:
  • free
  • s1 - s5 (paid plans)
$saasSubscriptionId =  New-HbsSaaSApplication -name $botServiceName -planId free
  1. Deploy Healthcare Bot resources for the Marketplace SaaS application you just created in previous step. Available locations are US and EU
.\scripts\azuredeploy-healthcarebot.ps1 -ResourceGroup $rg.ResourceGroupName `
    -saasSubscriptionId $saasSubscriptionId  -serviceName $botServiceName `
    -botLocation US

About

Setup Healthcare Bot landscape to provide organizations with Virtual Health Assistants

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published