Yannick Lemin commited on
Commit
7bca703
·
1 Parent(s): f7d9669

added constants class

Browse files
Files changed (2) hide show
  1. src/utils/__init__.py +0 -0
  2. src/utils/constants.py +9 -0
src/utils/__init__.py ADDED
File without changes
src/utils/constants.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ class Constants:
2
+ # MODEL NAMES
3
+ MODEL = "gpt-4.1"
4
+ EMBEDDING_MODEL = "text-embedding-3-large"
5
+
6
+ # Database
7
+ DB_NAME = "adf"
8
+ COLLECTION_NAME = "catalog"
9
+ ATLAS_VECTOR_SEARCH_INDEX_NAME = "adf_catalog_search_index"