Gowthamr23 commited on
Commit
c623e45
·
verified ·
1 Parent(s): 1bccbb6

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. 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 = "QLESS"
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