TalatMasood commited on
Commit
3a56021
·
1 Parent(s): 2e372c4

Changed 'EMBEDDING_MODEL', 'all-MiniLM-L6-v2' for produciton also.

Browse files
config/__pycache__/config.cpython-312.pyc CHANGED
Binary files a/config/__pycache__/config.cpython-312.pyc and b/config/__pycache__/config.cpython-312.pyc differ
 
config/config.py CHANGED
@@ -30,7 +30,8 @@ class Settings:
30
  def EMBEDDING_MODEL(self):
31
  if self.ENVIRONMENT == 'production':
32
  # Better model for demos
33
- return os.getenv('EMBEDDING_MODEL', 'text-embedding-3-large')
 
34
  # Better for development purposes.
35
  return os.getenv('EMBEDDING_MODEL', 'all-MiniLM-L6-v2')
36
 
@@ -112,4 +113,4 @@ class Settings:
112
  settings = Settings()
113
 
114
  print(f"Current Environment: {settings.ENVIRONMENT}")
115
- print(f"Current MongoDB URI: {settings.MONGODB_URI}")
 
30
  def EMBEDDING_MODEL(self):
31
  if self.ENVIRONMENT == 'production':
32
  # Better model for demos
33
+ # return os.getenv('EMBEDDING_MODEL', 'openai/text-embedding-3-large')
34
+ return os.getenv('EMBEDDING_MODEL', 'all-MiniLM-L6-v2')
35
  # Better for development purposes.
36
  return os.getenv('EMBEDDING_MODEL', 'all-MiniLM-L6-v2')
37
 
 
113
  settings = Settings()
114
 
115
  print(f"Current Environment: {settings.ENVIRONMENT}")
116
+ # print(f"Current MongoDB URI: {settings.MONGODB_URI}")
src/__pycache__/main.cpython-312.pyc CHANGED
Binary files a/src/__pycache__/main.cpython-312.pyc and b/src/__pycache__/main.cpython-312.pyc differ