Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jskinner215
/
TAPASxHF2
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
25fc3a2
TAPASxHF2
/
chroma_db_indexer.py
jskinner215
Upload 17 files
25fc3a2
over 1 year ago
raw
Copy download link
history
blame
Safe
224 Bytes
from
chroma_db
import
ChromaDB
class
ChromaDBIndexer
:
def
__init__
(
self
):
self.db = ChromaDB()
def
create_index
(
self, embeddings
):
for
embedding
in
embeddings:
self.db.insert(embedding)