diff --git a/litellm/rust_bridge/_native.pyi b/litellm/rust_bridge/_native.pyi index 7eb266d5a09..baac21bb4bd 100644 --- a/litellm/rust_bridge/_native.pyi +++ b/litellm/rust_bridge/_native.pyi @@ -109,11 +109,14 @@ class _CacheTestHandle: *, ttl_seconds: float = 60.0, namespace: str | None = None, + startup_nodes: list[tuple[str, int]] | None = None, ) -> _CacheTestHandle: ... @staticmethod + def azure_blob(account_url: str, container: str) -> _CacheTestHandle: ... + @staticmethod def redis_semantic(backend: object) -> _CacheTestHandle: ... @property - def backend(self) -> Literal["memory", "redis", "redis_semantic"]: ... + def backend(self) -> Literal["memory", "redis", "azure-blob", "redis_semantic"]: ... def _bind_facade(self, facade: object) -> None: ... @final