mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-25 01:02:15 +00:00
fix(python-bridge): update cache test handle stubs for merged backends
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
2129a94e56
commit
2ab4b25588
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue