MCPcopy Create free account
hub / github.com/abetlen/llama-cpp-python / __init__

Method __init__

llama_cpp/llama_cache.py:20–21  ·  view source on GitHub ↗
(self, capacity_bytes: int = (2 << 30))

Source from the content-addressed store, hash-verified

18 """Base cache class for a llama.cpp model."""
19
20 def __init__(self, capacity_bytes: int = (2 << 30)):
21 self.capacity_bytes = capacity_bytes
22
23 @property
24 @abstractmethod

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected