From 7dd3ebf2fc46000953311ca929dc5771e3f7b423 Mon Sep 17 00:00:00 2001 From: shiyu22 Date: Fri, 12 Aug 2022 15:27:47 +0800 Subject: [PATCH] Update README Signed-off-by: shiyu22 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2da4242..c4889c3 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ and connected Milvus before loading the data.** import towhee towhee.dc(your_embeddings) \ - .ann_insert.milvus(uri='tcp://localhost:19530/my_collection') + .ann_insert.milvus(uri='tcp://:/') ``` *Write a same pipeline with explicit inputs/outputs name specifications:* @@ -34,7 +34,7 @@ towhee.dc(your_embeddings) \ import towhee towhee.dc['vec'](your_embeddings) \ - .ann_insert.milvus['vec', 'results'](uri='tcp://localhost:19530/my_collection') \ + .ann_insert.milvus['vec', 'results'](uri='tcp://:/') \ .show() ```