diff --git a/embedchain/models/__init__.py b/embedchain/models/__init__.py index 63b33234..ce5a0698 100644 --- a/embedchain/models/__init__.py +++ b/embedchain/models/__init__.py @@ -1,4 +1,4 @@ from .EmbeddingFunctions import EmbeddingFunctions # noqa: F401 -from .Providers import Providers # 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/Providers.py b/embedchain/models/providers.py similarity index 100% rename from embedchain/models/Providers.py rename to embedchain/models/providers.py