Skip to content

Commit

Permalink
[fix] chromadb 주소 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
uommou committed Apr 28, 2024
1 parent 4b01946 commit 1698135
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/database/chroma_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
CHROMA_DB_IP_ADDRESS = os.getenv("CHROMA_DB_IP_ADDRESS")

# description: 원격 EC2 인스턴스에서 ChromaDB에 연결
chroma_client = chromadb.HttpClient(host=CHROMA_DB_IP_ADDRESS, port=8000)
# https://db.nessplanning.com
chroma_client = chromadb.HttpClient(host='https://db.nessplanning.com', port=8000)
# chroma_client = chromadb.HttpClient(host=CHROMA_DB_IP_ADDRESS, port=8000)

# description: embedding funtion 설정
# all-MiniLM-L6-v2 가 디폴트
Expand Down

0 comments on commit 1698135

Please sign in to comment.