ChromaDB Load

임정민·2025년 8월 11일

메모장

목록 보기
31/34
post-thumbnail
import chromadb
client = chromadb.PersistentClient(path="/path/to/your/chroma_data")

collection = client.get_collection(name="my_documents")
results = collection.query(query_texts=["fruit"], n_results=1)
print(results)
    
profile
https://github.com/min731

0개의 댓글