Skip to content

Commit 57949fa

Browse files
committed
Update DATA_DIR to CHROMADB_DIR
1 parent e46a02e commit 57949fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rabbithole/vecstore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
import chromadb
66
from chromadb.config import Settings
77

8-
DATA_DIR = Path(__file__).parent.parent.joinpath("data")
8+
CHROMADB_DIR = Path(__file__).resolve().parent.parent.joinpath("data", "chromadb")
99

10-
client = chromadb.Client(settings=Settings(chroma_db_impl="duckdb+parquet", persist_directory=str(DATA_DIR)))
10+
client = chromadb.Client(settings=Settings(chroma_db_impl="duckdb+parquet", persist_directory=str(CHROMADB_DIR)))

0 commit comments

Comments
 (0)