Skip to content

Commit 786b151

Browse files
authored
docs(Eino): fix package error in "indexer_milvus" and "retriever_milvus" (#1317)
1 parent 5e6c2c1 commit 786b151

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

content/en/docs/eino/ecosystem/indexer/indexer_milvus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ with Eino's vector storage and retrieval system for enhanced semantic search cap
1818
### Installation
1919

2020
```bash
21-
go get github.com/eino-project/eino/indexer/milvus@latest
21+
go get github.com/cloudwego/eino-ext/components/indexer/milvus
2222
```
2323

2424
### Create the Milvus Indexer
@@ -35,7 +35,7 @@ import (
3535
"github.com/cloudwego/eino/schema"
3636
"github.com/milvus-io/milvus-sdk-go/v2/client"
3737

38-
"github.com/cloudwego/eino-ext/components/retriever/milvus"
38+
"github.com/cloudwego/eino-ext/components/indexer/milvus"
3939
)
4040

4141
func main() {

content/en/docs/eino/ecosystem/retriever/retriever_milvus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ with Eino's vector storage and retrieval system for enhanced semantic search cap
1818
### Installation
1919

2020
```bash
21-
go get github.com/eino-project/eino/retriever/milvus@latest
21+
go get github.com/cloudwego/eino-ext/components/retriever/milvus
2222
```
2323

2424
### Create the Milvus Retriever

content/zh/docs/eino/ecosystem_integration/indexer/indexer_milvus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Eino 的向量存储和检索系统,增强语义搜索能力。
1717
### 安装
1818

1919
```bash
20-
go get github.com/eino-project/eino/indexer/milvus@latest
20+
go get github.com/cloudwego/eino-ext/components/indexer/milvus
2121
```
2222

2323
### 创建 Milvus 存储
@@ -34,7 +34,7 @@ import (
3434
"github.com/cloudwego/eino/schema"
3535
"github.com/milvus-io/milvus-sdk-go/v2/client"
3636

37-
"github.com/cloudwego/eino-ext/components/retriever/milvus"
37+
"github.com/cloudwego/eino-ext/components/indexer/milvus"
3838
)
3939

4040
func main() {

content/zh/docs/eino/ecosystem_integration/retriever/retriever_milvus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Eino 的向量存储和检索系统,增强语义搜索能力。
1919
### 安装
2020

2121
```bash
22-
go get github.com/eino-project/eino/retriever/milvus@latest
22+
go get github.com/cloudwego/eino-ext/components/retriever/milvus
2323
```
2424

2525
### 创建 Milvus 搜索

0 commit comments

Comments
 (0)