We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3afaa0e commit c16c065Copy full SHA for c16c065
generative_ai/context_caching/list_content_caches.py renamed to generative_ai/context_caching/list_context_caches.py
generative_ai/context_caching/test_context_caching.py
@@ -19,7 +19,7 @@
19
import create_context_cache
20
import delete_context_cache
21
import get_context_cache
22
-import list_content_caches
+import list_context_caches
23
import pytest
24
import update_context_cache
25
import use_context_cache
@@ -50,7 +50,7 @@ def test_get_context_cache(cache_id: str) -> None:
50
51
52
def test_get_list_of_context_caches(cache_id: str) -> None:
53
- response = list_content_caches.list_content_caches()
+ response = list_context_caches.list_content_caches()
54
assert cache_id in response
55
56
0 commit comments