export async function GetDeployments()

in src/azurechat/features/common/appconfig.ts [19:26]


export async function GetDeployments() {
  const deploymentsJson = await appConfigStore.getConfigurationSetting({
    key: "AzureChat:Deployments"
  });

  const deployments = JSON.parse(deploymentsJson.value as string) as DeploymentConfig[];
  return deployments;
}