rahgadda commited on
Commit
ce0579f
·
verified ·
1 Parent(s): 46eae16

Initial Draft

Browse files
Files changed (1) hide show
  1. lib/ui/util/CONFIG.py +7 -0
lib/ui/util/CONFIG.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ SERVER_PORT = '8081'
2
+ SERVER_HOST = 'localhost'
3
+ VECTOR_DB_URI = '/api/create/vectordb'
4
+ VECTOR_STORE_API_URL = 'http://' + SERVER_HOST + ':' + SERVER_PORT+ VECTOR_DB_URI
5
+
6
+ MAPPING_URI = '/api/create/mapping'
7
+ MAPPING_API_URL = 'http://' + SERVER_HOST + ':' + SERVER_PORT+ MAPPING_URI