mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-07 08:26:06 +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"]
|