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

This commit is contained in:
Subhajit Ghosh
2023-09-27 09:56:11 +05:30
committed by GitHub
parent 3999f2a373
commit b8fc7b0c9e
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
from enum import Enum
class VectorDatabases(Enum):
CHROMADB = "CHROMADB"
ELASTICSEARCH = "ELASTICSEARCH"