mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-19 00:01:33 +00:00
10 lines
197 B
Python
10 lines
197 B
Python
"""embedding"""
|
|
|
|
from .base_embedding_model import BaseEmbeddingModel
|
|
from .openai_embedding_model import OpenAIEmbeddingModel
|
|
|
|
__all__ = [
|
|
"BaseEmbeddingModel",
|
|
"OpenAIEmbeddingModel",
|
|
]
|
|
|