Renamed models/VectorDimensions.py to follow snake case convention (#706)

This commit is contained in:
Subhajit Ghosh
2023-09-27 10:15:28 +05:30
committed by GitHub
parent cc9a06b116
commit 7d5bfd8c9f
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
from enum import Enum
# vector length created by embedding fn
class VectorDimensions(Enum):
GPT4ALL = 384
OPENAI = 1536
VERTEX_AI = 768
HUGGING_FACE = 384