(
fn: Callable[P, Coroutine[Any, Any, R]],
save_path: str | None = None,
method: LoaderKey = "pickle",
pin_modules: bool = False,
)
| 1192 | |
| 1193 | @overload |
| 1194 | def persistent_cache( |
| 1195 | fn: Callable[P, Coroutine[Any, Any, R]], |
| 1196 | save_path: str | None = None, |
| 1197 | method: LoaderKey = "pickle", |
| 1198 | pin_modules: bool = False, |
| 1199 | ) -> _cache_call_async[P, R]: ... |
| 1200 | |
| 1201 | |
| 1202 | @overload |
searching dependent graphs…