chore: Renamed EmbeddingFunctions.py to follow snakecase convention (#669)

Signed-off-by: Osama Nabih <nabih_the_4th@yahoo.com>
This commit is contained in:
Osama Nabih
2023-09-28 09:05:10 +03:00
committed by GitHub
parent 8bde34a24f
commit e73ed82ae9
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
from enum import Enum
class EmbeddingFunctions(Enum):
OPENAI = "OPENAI"
HUGGING_FACE = "HUGGING_FACE"
VERTEX_AI = "VERTEX_AI"
GPT4ALL = "GPT4ALL"