Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- app/services/chroma.py +1 -1
app/services/chroma.py
CHANGED
|
@@ -9,7 +9,7 @@ class ChromaSearcher:
|
|
| 9 |
def __init__(self, token: str = None):
|
| 10 |
self.api_key = token or os.environ.get("CHROMA_API_KEY", "")
|
| 11 |
self.tenant = "99526d4b-48cf-4b20-896b-0947aa36d4ab"
|
| 12 |
-
self.database = "
|
| 13 |
self.collection_id = "c1102322-920e-4775-96c1-e324bdadaa1d"
|
| 14 |
self.url = f"https://api.trychroma.com/api/v2/tenants/{self.tenant}/databases/{self.database}/collections/{self.collection_id}/query"
|
| 15 |
|
|
|
|
| 9 |
def __init__(self, token: str = None):
|
| 10 |
self.api_key = token or os.environ.get("CHROMA_API_KEY", "")
|
| 11 |
self.tenant = "99526d4b-48cf-4b20-896b-0947aa36d4ab"
|
| 12 |
+
self.database = "QLESS2"
|
| 13 |
self.collection_id = "c1102322-920e-4775-96c1-e324bdadaa1d"
|
| 14 |
self.url = f"https://api.trychroma.com/api/v2/tenants/{self.tenant}/databases/{self.database}/collections/{self.collection_id}/query"
|
| 15 |
|