diff --git a/embedchain/models/__init__.py b/embedchain/models/__init__.py index ce5a0698..fc073230 100644 --- a/embedchain/models/__init__.py +++ b/embedchain/models/__init__.py @@ -1,4 +1,4 @@ -from .EmbeddingFunctions import EmbeddingFunctions # noqa: F401 +from .embedding_functions import EmbeddingFunctions # noqa: F401 from .providers import Providers # noqa: F401 from .vector_databases import VectorDatabases # noqa: F401 from .vector_dimensions import VectorDimensions # noqa: F401 diff --git a/embedchain/models/EmbeddingFunctions.py b/embedchain/models/embedding_functions.py similarity index 100% rename from embedchain/models/EmbeddingFunctions.py rename to embedchain/models/embedding_functions.py