Spaces:
Sleeping
Sleeping
File size: 434 Bytes
cd3709a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import os
SAAS = False
def get_db_config():
url = os.environ["QDRANT_URL"]
api_key = os.environ["QDRANT_API_KEY"]
collection_name = "gh-issues"
return url, api_key, collection_name
def get_local_db_congin():
url = "localhost"
# api_key = os.environ["QDRANT_API_KEY"]
collection_name = "gh-issues"
return url, None, collection_name
DB_CONFIG = get_db_config() if SAAS else get_local_db_congin()
|