(self, text: str)
| 361 | return hashlib.sha256(payload.encode("utf-8")).hexdigest() |
| 362 | |
| 363 | def _cache_path(self, text: str) -> Path: |
| 364 | return self.cache_dir / f"{self._cache_key(text)}.json" |
| 365 | |
| 366 | def _load_cached(self, text: str) -> Optional[List[float]]: |
| 367 | cache_path = self._cache_path(text) |
no test coverage detected