From 813d2ab78ee5dc75d80d776faf872b6e69e73b4c Mon Sep 17 00:00:00 2001 From: shiyu22 Date: Mon, 29 May 2023 17:24:28 +0800 Subject: [PATCH] Add README Signed-off-by: shiyu22 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d891542..dd4ed18 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ ### **Create Milvus collection** -Before running the pipeline, please create Milvus collection first. +Before running the pipeline, please [create Milvus collection](https://milvus.io/docs/v2.0.x/create_collection.md) first. > The `dim` is the dimensionality of the feature vector generated by the configured `model` in the `eqa-insert` pipeline. @@ -22,7 +22,7 @@ from pymilvus import connections, FieldSchema, CollectionSchema, DataType, Colle collection_name = 'chatbot' dim = 384 -connections.connect(host='172.16.70.4', port='19530') +connections.connect(host='127.0.0.1', port='19530') fields = [ FieldSchema(name='id', dtype=DataType.INT64, descrition='ids', is_primary=True, auto_id=True),