Skip to content

Commit b24299a

Browse files
Milvus-doc-botMilvus-doc-bot
authored andcommitted
Release new docs
1 parent 0c3f478 commit b24299a

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

v2.4.x/site/en/reference/schema.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Milvus supports only one primary key field in a collection.
2020
<table class="properties">
2121
<thead>
2222
<tr>
23-
<th>Properties</td>
23+
<th>Properties</th>
2424
<th>Description</th>
2525
<th>Note</th>
2626
</tr>
@@ -138,7 +138,7 @@ A collection schema is the logical definition of a collection. Usually you need
138138
<table class="properties">
139139
<thead>
140140
<tr>
141-
<th>Properties</td>
141+
<th>Properties</th>
142142
<th>Description</th>
143143
<th>Note</th>
144144
</tr>
@@ -189,7 +189,8 @@ schema = CollectionSchema(fields=[id_field, age_field, embedding_field], auto_id
189189
Create a collection with the schema specified:
190190

191191
```python
192-
from pymilvus import Collection
192+
from pymilvus import Collection,connections
193+
conn = connections.connect(host="127.0.0.1", port=19530)
193194
collection_name1 = "tutorial_1"
194195
collection1 = Collection(name=collection_name1, schema=schema, using='default', shards_num=2)
195196
```

v2.4.x/site/en/tutorials/tutorials-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This page provides a list of tutorials for you to interact with Milvus.
1414
| [Multimodal RAG with Milvus](multimodal_rag_with_milvus.md) | RAG | vector search, dynamic field |
1515
| [Image Search with Milvus](image_similarity_search.md) | Semantic Search | vector search, dynamic field |
1616
| [Hybrid Search with Milvus](hybrid_search_with_milvus.md) | Hybrid Search | hybrid search, multi vector, dense embedding, sparse embedding |
17-
| [Multimodal Search using multi vectors](multimodal_rag_with_milvus.md) | Semantic Search | multi vector, hybrid search |
17+
| [Multimodal Search using Multi Vectors](multimodal_rag_with_milvus.md) | Semantic Search | multi vector, hybrid search |
1818
| [Question Answering System](question_answering_system.md) | Question Answering | vector search |
1919
| [Recommender System](recommendation_system.md) | Recommendation System | vector search |
2020
| [Video Similarity Search](video_similarity_search.md) | Semantic Search | vector search |
@@ -28,4 +28,4 @@ This page provides a list of tutorials for you to interact with Milvus.
2828
| [HDBSCAN Clustering with Milvus](hdbscan_clustering_with_milvus.md) | Quickstart | vector search |
2929
| [Use ColPali for Multi-Modal Retrieval with Milvus](use_ColPali_with_milvus.md) | Quickstart | vector search |
3030
| [Vector Visualization](vector_visualization.md) | Quickstart | vector search |
31-
| [Movie Recommendation with Milvus](movie_recommendation_with_milvus.md) | Recommendation System | vector search |
31+
| [Movie Recommendation with Milvus](movie_recommendation_with_milvus.md) | Recommendation System | vector search |

0 commit comments

Comments
 (0)