그외 chromdb 관련 이슈 링크
colab에 접속하고 한다. (https://colab.research.google.com/)
python 버전 확인 및 chromabDB설치
# python 버전 확인
! python3 --version
Python 3.10.12
# chromadb 설치
! pip install chromadb
chromadb 테스트
import chromadb
# chromadb client 생성
chroma_client = chromadb.Client()
# collection 생성
collection = chroma_client.create_collection(name="my_collection")
# collection 에 텍스트 추가
collection.add(
documents=[
"This is a document about pineapple",
"This is a document about oranges"
],
ids=["id1", "id2"]
)
# collection에 쿼리 날리기
results = collection.query(
query_texts=["This is a query document about hawaii"], # Chroma will embed this for you
n_results=2 # how many results to return
)
print(results)
# 또다른 쿼리 날려보기
results = collection.query(
query_texts=["This is a query document about florida"], # Chroma will embed this for you
n_results=2 # how many results to return
)
print(results)