Spaces:
Sleeping
Sleeping
Initial Draft
Browse files- 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
|