Files
org/config/db/chroma.py
2026-01-28 20:58:57 +09:00

9 lines
215 B
Python

import chromadb
# 2. 벡터 DB 설정
persist_directory = "./chroma_db"
chroma_client = chromadb.PersistentClient(path=persist_directory)
collection = chroma_client.get_or_create_collection(
name="orgchart",
)