Loading...
アイコン

Kamal Rathnayake

チャンネル登録者数 8720人

7万 回視聴 ・ 796いいね ・ 2023/07/24

Connect on LinkedIn - www.linkedin.com/in/kamal-rathnayake/

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 - 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

コメント

コメントを取得中...

コントロール
設定

使用したサーバー: directk