CassandraCache#

class langchain_community.cache.CassandraCache(session: CassandraSession | None = None, keyspace: str | None = None, table_name: str = 'langchain_llm_cache', ttl_seconds: int | None = None, skip_provisioning: bool = False, setup_mode: CassandraSetupMode = SetupMode.SYNC)[source]#

Cache that uses Cassandra / Astra DB as a backend.

Example

import cassio

from langchain_community.cache import CassandraCache
from langchain_core.globals import set_llm_cache

cassio.init(auto=True)  # Requires env. variables, see CassIO docs

set_llm_cache(CassandraCache())

It uses a single Cassandra table. The lookup keys (which get to form the primary key) are:

  • prompt, a string

  • llm_string, a deterministic str representation of the model parameters. (needed to prevent same-prompt-different-model collisions)

Parameters:
  • session (Optional[CassandraSession]) – an open Cassandra session. Leave unspecified to use the global cassio init (see below)

  • keyspace (Optional[str]) – the keyspace to use for storing the cache. Leave unspecified to use the global cassio init (see below)

  • table_name (str) – name of the Cassandra table to use as cache

  • ttl_seconds (Optional[int]) – time-to-live for cache entries (default: None, i.e. forever)

  • setup_mode (CassandraSetupMode) – a value in langchain_community.utilities.cassandra.SetupMode. Choose between SYNC, ASYNC and OFF - the latter if the Cassandra table is guaranteed to exist already, for a faster initialization.

  • skip_provisioning (bool) –

Note

The session and keyspace parameters, when left out (or passed as None), fall back to the globally-available cassio settings if any are available. In other words, if a previously-run ‘cassio.init(…)’ has been executed previously anywhere in the code, Cassandra-based objects need not specify the connection parameters at all.

Methods

__init__([session, keyspace, table_name, ...])

aclear(**kwargs)

Clear cache.

alookup(prompt, llm_string)

Async look up based on prompt and llm_string.

aupdate(prompt, llm_string, return_val)

Async update cache based on prompt and llm_string.

clear(**kwargs)

Clear cache.

delete(prompt, llm_string)

Evict from cache if there's an entry.

delete_through_llm(prompt, llm[, stop])

A wrapper around delete with the LLM being passed.

lookup(prompt, llm_string)

Look up based on prompt and llm_string.

update(prompt, llm_string, return_val)

Update cache based on prompt and llm_string.

__init__(session: CassandraSession | None = None, keyspace: str | None = None, table_name: str = 'langchain_llm_cache', ttl_seconds: int | None = None, skip_provisioning: bool = False, setup_mode: CassandraSetupMode = SetupMode.SYNC)[source]#
Parameters:
  • session (Optional[CassandraSession]) –

  • keyspace (Optional[str]) –

  • table_name (str) –

  • ttl_seconds (Optional[int]) –

  • skip_provisioning (bool) –

  • setup_mode (CassandraSetupMode) –

async aclear(**kwargs: Any) None[source]#

Clear cache. This is for all LLMs at once.

Parameters:

kwargs (Any) –

Return type:

None

async alookup(prompt: str, llm_string: str) Sequence[Generation] | None[source]#

Async look up based on prompt and llm_string.

A cache implementation is expected to generate a key from the 2-tuple of prompt and llm_string (e.g., by concatenating them with a delimiter).

Parameters:
  • prompt (str) – a string representation of the prompt. In the case of a Chat model, the prompt is a non-trivial serialization of the prompt into the language model.

  • llm_string (str) – A string representation of the LLM configuration. This is used to capture the invocation parameters of the LLM (e.g., model name, temperature, stop tokens, max tokens, etc.). These invocation parameters are serialized into a string representation.

Returns:

On a cache miss, return None. On a cache hit, return the cached value. The cached value is a list of Generations (or subclasses).

Return type:

Sequence[Generation] | None

async aupdate(prompt: str, llm_string: str, return_val: Sequence[Generation]) None[source]#

Async update cache based on prompt and llm_string.

The prompt and llm_string are used to generate a key for the cache. The key should match that of the look up method.

Parameters:
  • prompt (str) – a string representation of the prompt. In the case of a Chat model, the prompt is a non-trivial serialization of the prompt into the language model.

  • llm_string (str) – A string representation of the LLM configuration. This is used to capture the invocation parameters of the LLM (e.g., model name, temperature, stop tokens, max tokens, etc.). These invocation parameters are serialized into a string representation.

  • return_val (Sequence[Generation]) – The value to be cached. The value is a list of Generations (or subclasses).

Return type:

None

clear(**kwargs: Any) None[source]#

Clear cache. This is for all LLMs at once.

Parameters:

kwargs (Any) –

Return type:

None

delete(prompt: str, llm_string: str) None[source]#

Evict from cache if there’s an entry.

Parameters:
  • prompt (str) –

  • llm_string (str) –

Return type:

None

delete_through_llm(prompt: str, llm: LLM, stop: List[str] | None = None) None[source]#

A wrapper around delete with the LLM being passed. In case the llm.invoke(prompt) calls have a stop param, you should pass it here

Parameters:
  • prompt (str) –

  • llm (LLM) –

  • stop (List[str] | None) –

Return type:

None

lookup(prompt: str, llm_string: str) Sequence[Generation] | None[source]#

Look up based on prompt and llm_string.

A cache implementation is expected to generate a key from the 2-tuple of prompt and llm_string (e.g., by concatenating them with a delimiter).

Parameters:
  • prompt (str) – a string representation of the prompt. In the case of a Chat model, the prompt is a non-trivial serialization of the prompt into the language model.

  • llm_string (str) – A string representation of the LLM configuration. This is used to capture the invocation parameters of the LLM (e.g., model name, temperature, stop tokens, max tokens, etc.). These invocation parameters are serialized into a string representation.

Returns:

On a cache miss, return None. On a cache hit, return the cached value. The cached value is a list of Generations (or subclasses).

Return type:

Sequence[Generation] | None

update(prompt: str, llm_string: str, return_val: Sequence[Generation]) None[source]#

Update cache based on prompt and llm_string.

The prompt and llm_string are used to generate a key for the cache. The key should match that of the lookup method.

Parameters:
  • prompt (str) – a string representation of the prompt. In the case of a Chat model, the prompt is a non-trivial serialization of the prompt into the language model.

  • llm_string (str) – A string representation of the LLM configuration. This is used to capture the invocation parameters of the LLM (e.g., model name, temperature, stop tokens, max tokens, etc.). These invocation parameters are serialized into a string representation.

  • return_val (Sequence[Generation]) – The value to be cached. The value is a list of Generations (or subclasses).

Return type:

None

Examples using CassandraCache