mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-16 23:41:10 +00:00
6 lines
205 B
Python
6 lines
205 B
Python
"""Embedding store implementations."""
|
|
|
|
from .base_embedding_store import BaseEmbeddingStore
|
|
from .local_embedding_store import LocalEmbeddingStore
|
|
|
|
__all__ = ["BaseEmbeddingStore", "LocalEmbeddingStore"]
|