Skip to content

Commit

Permalink
retriever/milvus: Update README.md (opea-project#789)
Browse files Browse the repository at this point in the history
Signed-off-by: Cathy Zhang <[email protected]>
Co-authored-by: lvliang-intel <[email protected]>
  • Loading branch information
bjzhjing and lvliang-intel authored Oct 21, 2024
1 parent 8eb273d commit 7e085a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comps/retrievers/milvus/langchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Please refer to this [readme](../../../vectorstores/milvus/README.md).
export no_proxy=${your_no_proxy}
export http_proxy=${your_http_proxy}
export https_proxy=${your_http_proxy}
export MILVUS=${your_milvus_host_ip}
export MILVUS_HOST=${your_milvus_host_ip}
export MILVUS_PORT=19530
export COLLECTION_NAME=${your_collection_name}
export MOSEC_EMBEDDING_ENDPOINT=${your_emdding_endpoint}
Expand All @@ -43,7 +43,7 @@ docker build -t opea/retriever-milvus:latest --build-arg https_proxy=$https_prox
### Run Docker with CLI

```bash
docker run -d --name="retriever-milvus-server" -p 7000:7000 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e MOSEC_EMBEDDING_ENDPOINT=${your_emdding_endpoint} -e MILVUS=${your_milvus_host_ip} opea/retriever-milvus:latest
docker run -d --name="retriever-milvus-server" -p 7000:7000 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e MOSEC_EMBEDDING_ENDPOINT=${your_emdding_endpoint} -e MILVUS_HOST=${your_milvus_host_ip} opea/retriever-milvus:latest
```

## 🚀3. Consume Retriever Service
Expand Down

0 comments on commit 7e085a4

Please sign in to comment.