Cache Management
get_cache
Get a cache by name
Parameters
name
(str): Name of the cache to retrieve
Returns
Cache
: A cache object that is used to interact with the cache
Examples
Cache Methods
The Cache
object returned by the synchronous method has the following methods:
update() -> bool
: Update the cache with any new documents matching the original filtersadd_docs(docs: List[str]) -> bool
: Add specific documents to the cachequery(query: str, max_tokens: Optional[int] = None, temperature: Optional[float] = None) -> CompletionResponse
: Query the cache