Support Managed Identity Authentication for AI Search #559
-
Context / ScenarioHi team, QuestionHave Kernel Memory support Managed Identity Authentication for AI Search yet? If yes, can we get more details on how to set it up, please? If not, can we get some ETA plan on when this feature can be delivered, please? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
hello there, yes Managed Identities are supported, here's a quick example: var builder = new KernelMemoryBuilder()
.WithAzureAISearchMemoryDb(new AzureAISearchConfig { Auth = AzureAISearchConfig.AuthTypes.AzureIdentity })
.WithAzureBlobsDocumentStorage(new AzureBlobsConfig { Auth = AzureBlobsConfig.AuthTypes.AzureIdentity })
.WithAzureOpenAITextGeneration(new AzureOpenAIConfig { Auth = AzureOpenAIConfig.AuthTypes.AzureIdentity })
.WithAzureOpenAITextEmbeddingGeneration(new AzureOpenAIConfig { Auth = AzureOpenAIConfig.AuthTypes.AzureIdentity }) |
Beta Was this translation helpful? Give feedback.
-
Great, thank you so much your prompt reply. |
Beta Was this translation helpful? Give feedback.
hello there, yes Managed Identities are supported, here's a quick example: