소스 검색

Renamed models/VectorDatabases.py to follow snake case convention (#703)

Subhajit Ghosh 1 년 전
부모
커밋
b8fc7b0c9e
2개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      embedchain/models/__init__.py
  2. 0 0
      embedchain/models/vector_databases.py

+ 1 - 1
embedchain/models/__init__.py

@@ -1,4 +1,4 @@
 from .EmbeddingFunctions import EmbeddingFunctions  # noqa: F401
 from .Providers import Providers  # noqa: F401
-from .VectorDatabases import VectorDatabases  # noqa: F401
+from .vector_databases import VectorDatabases  # noqa: F401
 from .VectorDimensions import VectorDimensions  # noqa: F401

embedchain/models/VectorDatabases.py → embedchain/models/vector_databases.py