(self, capacity_bytes: int = (2 << 30))
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected