MENU

Fun & Interesting

Azure OpenAI - Chat with Your Own Data

Meet Kamal Today - Cloud Mastery 67,855 lượt xem 1 year ago
Video Not Working? Fix It Now

Welcome to the forth video in my Azure OpenAI Service series! In this video, we're going to look at Add your data functionality.

00:00 - Intro
00:30 - Configuration
01:28 - Storage Account and Cognitive Search
02:26 - Why Cognitive Search?
03:01 - Retrieval Augmented Generation (RAG)
05:16 - Cognitive Search Indexes
05:46 - Cognitive Search Pricing
06:51 - Testing the Bot
08:34 - Publishing the Bot
09:29 - App Service Authentication
09:56 - Walkaround Azure Cognitive Search
10:59 - File changes and Re-indexing

#AzureOpenAIService #BringYourOwnData #RetrievalAugmentedGeneration

Script for creating storage account

$grp = "rg-azure-search-indexers"
$loc = "eastus"
$storageAccountName = 'stazureoaidemo10010'
$searchName = "aci-azure-oai-demo-10010"

az group create --name $grp `
--location $loc

az storage account create --name $storageAccountName `
--resource-group $grp `
--location $loc

az search service create --name $searchName `
--resource-group $grp `
--sku Basic `
--location $loc

Custom Demo - https://github.com/Azure-Samples/azure-search-openai-demo

🔔 Don't forget to like, subscribe, and hit the notification bell to stay updated with the latest videos in the Azure OpenAI Service series!

Comment