-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable milvus for retriever and datap-reparation
Enable milvus vector database work with TEI embedding for retriever and data-preparation Signed-off-by: Wang, Xigui <[email protected]>
- Loading branch information
Showing
9 changed files
with
237 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export DOCKER_VOLUME_DIRECTORY="../../../vectorstores/milvus" | ||
export host_ip=$(hostname -i) | ||
export no_proxy=${no_proxy},tei-embedding-service | ||
export http_proxy=${http_proxy} | ||
export https_proxy=${http_proxy} | ||
export MILVUS_HOST=${host_ip} | ||
export MILVUS_PORT=19530 | ||
export EMBEDDING_MODEL_ID="BAAI/bge-base-en-v1.5" | ||
# Optional COLLECTION_NAME | ||
export COLLECTION_NAME=${your_collection_name} |
Oops, something went wrong.