From c94009ceecef1588204c13073e21ced32d0d10f6 Mon Sep 17 00:00:00 2001 From: Valeriy Burlaka Date: Mon, 7 Oct 2024 15:41:59 +0200 Subject: [PATCH 1/3] fix typo in sample file name --- .../{list_content_caches.py => list_context_caches.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename generative_ai/context_caching/{list_content_caches.py => list_context_caches.py} (100%) diff --git a/generative_ai/context_caching/list_content_caches.py b/generative_ai/context_caching/list_context_caches.py similarity index 100% rename from generative_ai/context_caching/list_content_caches.py rename to generative_ai/context_caching/list_context_caches.py From 379d522af6a5fbab2a08f67901a2b9bb856c8b5f Mon Sep 17 00:00:00 2001 From: Valeriy Burlaka Date: Mon, 7 Oct 2024 15:53:11 +0200 Subject: [PATCH 2/3] update test file --- generative_ai/context_caching/test_context_caching.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generative_ai/context_caching/test_context_caching.py b/generative_ai/context_caching/test_context_caching.py index 7f04a6dc396..c0fffd95a10 100644 --- a/generative_ai/context_caching/test_context_caching.py +++ b/generative_ai/context_caching/test_context_caching.py @@ -19,7 +19,7 @@ import create_context_cache import delete_context_cache import get_context_cache -import list_content_caches +import list_context_caches import pytest import update_context_cache import use_context_cache @@ -50,7 +50,7 @@ def test_get_context_cache(cache_id: str) -> None: def test_get_list_of_context_caches(cache_id: str) -> None: - response = list_content_caches.list_content_caches() + response = list_context_caches.list_content_caches() assert cache_id in response From 0f0b80f3861bd040d74506475638683e94719bb9 Mon Sep 17 00:00:00 2001 From: Valeriy Burlaka Date: Mon, 7 Oct 2024 17:17:40 +0200 Subject: [PATCH 3/3] refresh CI checks