Skip to content

Commit

Permalink
Merge pull request #50 from studio-recoding/fix/chat
Browse files Browse the repository at this point in the history
[fix] chromadb 주소 변경
  • Loading branch information
uommou authored Apr 28, 2024
2 parents 83d82c7 + 1698135 commit 4c6338a
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 4c6338a

Please sign in to comment.