# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-06-05 11:59:11 -07:00
parent 3251b44d8a
commit 460c67be62
6 changed files with 36 additions and 18 deletions

View file

@ -10,6 +10,13 @@ from .config import KVStoreConfig, KVStoreType
def kvstore_dependencies():
"""
Returns all possible kvstore dependencies for registry/provider specifications.
NOTE: For specific kvstore implementations, use config.pip_packages instead.
This function returns the union of all dependencies for cases where the specific
kvstore type is not known at declaration time (e.g., provider registries).
"""
return ["aiosqlite", "psycopg2-binary", "redis", "pymongo"]