Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

CVE MixedBread Chroma Index

This directory contains the ready-to-use ChromaDB index that powers the /rag_mixedbread query service. It was built over the Kushalkhemka/embedding-cve-nvd-dataset corpus using MixedBread embeddings.

Contents

  • chroma.sqlite3 (~6.5 GB): sqlite metadata DB with documents, embeddings, and collection info.
  • */ uuid folders: Chroma's persisted embeddings/uuid partitions.

Usage

Download the repo and point Chroma to the folder:

from chromadb import PersistentClient
client = PersistentClient(path="/path/to/index")
collection = client.get_collection("cve-mixedbread")

You can now query with new embeddings created via MixedBread to retrieve CVE passages.

Notes

  • Requires ChromaDB >=0.5.
  • Embeddings are stored as float32; total size ~6.5 GB.

License

MIT, but respect the upstream CVE/NVD terms.

Downloads last month
30