From 7246a4698b8a6482b9380f95664786a31a160368 Mon Sep 17 00:00:00 2001 From: Israel Ekpo <37992436+izzymsft@users.noreply.github.com> Date: Tue, 7 May 2024 17:46:49 -0400 Subject: [PATCH] Update Challenge-05.md --- 068-AzureOpenAIApps/Student/Challenge-05.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/068-AzureOpenAIApps/Student/Challenge-05.md b/068-AzureOpenAIApps/Student/Challenge-05.md index 871950eccc..f7a0879dd6 100644 --- a/068-AzureOpenAIApps/Student/Challenge-05.md +++ b/068-AzureOpenAIApps/Student/Challenge-05.md @@ -50,6 +50,22 @@ In app insights, you should see the following events registered for each documen - **PROCESS_DOCUMENT_EMBEDDING_COMPUTE** - **PROCESS_YACHT_EMBEDDING_COMPUTE** +You should also be able to see the hashes in the Redis Cache + +````bash + +# Run this to see all the keys in the Cache +SCAN 0 COUNT 1000 MATCH * + +# Run this for each key to retrieve the value +GET {key} +GET yacht_embeddings_cache_400 +GET document_embeddings_cache_government/definition.txt + +```` + +![Application Insights](../images/redis-embeddings.png) + ## Success Criteria A successfully completed solution should accomplish the following goals: