Daniel Marques commited on
Commit
cdef4d4
1 Parent(s): 9f067a2

feat: add websocket

Browse files
Files changed (1) hide show
  1. constants.py +2 -2
constants.py CHANGED
@@ -61,7 +61,7 @@ DOCUMENT_MAP = {
61
  }
62
 
63
  # Default Instructor Model
64
- # EMBEDDING_MODEL_NAME = "hkunlp/instructor-large" # Uses 1.5 GB of VRAM (High Accuracy with lower VRAM usage)
65
 
66
  ####
67
  #### OTHER EMBEDDING MODEL OPTIONS
@@ -76,7 +76,7 @@ DOCUMENT_MAP = {
76
  #### MULTILINGUAL EMBEDDING MODELS
77
  ####
78
 
79
- EMBEDDING_MODEL_NAME = "intfloat/multilingual-e5-large" # Uses 2.5 GB of VRAM
80
  # EMBEDDING_MODEL_NAME = "intfloat/multilingual-e5-base" # Uses 1.2 GB of VRAM
81
 
82
 
 
61
  }
62
 
63
  # Default Instructor Model
64
+ EMBEDDING_MODEL_NAME = "hkunlp/instructor-large" # Uses 1.5 GB of VRAM (High Accuracy with lower VRAM usage)
65
 
66
  ####
67
  #### OTHER EMBEDDING MODEL OPTIONS
 
76
  #### MULTILINGUAL EMBEDDING MODELS
77
  ####
78
 
79
+ # EMBEDDING_MODEL_NAME = "intfloat/multilingual-e5-large" # Uses 2.5 GB of VRAM
80
  # EMBEDDING_MODEL_NAME = "intfloat/multilingual-e5-base" # Uses 1.2 GB of VRAM
81
 
82