mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-22 00:32:49 +00:00
6 lines
208 B
Python
6 lines
208 B
Python
"""Embedding model implementations."""
|
|
|
|
from .base_embedding_model import BaseEmbeddingModel
|
|
from .openai_embedding_model import OpenAIEmbeddingModel
|
|
|
|
__all__ = ["BaseEmbeddingModel", "OpenAIEmbeddingModel"]
|