Skip to content

Commit

Permalink
Release new docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Milvus-doc-bot authored and Milvus-doc-bot committed Nov 13, 2024
1 parent 0c3f478 commit b24299a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions v2.4.x/site/en/reference/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Milvus supports only one primary key field in a collection.
<table class="properties">
<thead>
<tr>
<th>Properties</td>
<th>Properties</th>
<th>Description</th>
<th>Note</th>
</tr>
Expand Down Expand Up @@ -138,7 +138,7 @@ A collection schema is the logical definition of a collection. Usually you need
<table class="properties">
<thead>
<tr>
<th>Properties</td>
<th>Properties</th>
<th>Description</th>
<th>Note</th>
</tr>
Expand Down Expand Up @@ -189,7 +189,8 @@ schema = CollectionSchema(fields=[id_field, age_field, embedding_field], auto_id
Create a collection with the schema specified:

```python
from pymilvus import Collection
from pymilvus import Collection,connections
conn = connections.connect(host="127.0.0.1", port=19530)
collection_name1 = "tutorial_1"
collection1 = Collection(name=collection_name1, schema=schema, using='default', shards_num=2)
```
Expand Down
4 changes: 2 additions & 2 deletions v2.4.x/site/en/tutorials/tutorials-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This page provides a list of tutorials for you to interact with Milvus.
| [Multimodal RAG with Milvus](multimodal_rag_with_milvus.md) | RAG | vector search, dynamic field |
| [Image Search with Milvus](image_similarity_search.md) | Semantic Search | vector search, dynamic field |
| [Hybrid Search with Milvus](hybrid_search_with_milvus.md) | Hybrid Search | hybrid search, multi vector, dense embedding, sparse embedding |
| [Multimodal Search using multi vectors](multimodal_rag_with_milvus.md) | Semantic Search | multi vector, hybrid search |
| [Multimodal Search using Multi Vectors](multimodal_rag_with_milvus.md) | Semantic Search | multi vector, hybrid search |
| [Question Answering System](question_answering_system.md) | Question Answering | vector search |
| [Recommender System](recommendation_system.md) | Recommendation System | vector search |
| [Video Similarity Search](video_similarity_search.md) | Semantic Search | vector search |
Expand All @@ -28,4 +28,4 @@ This page provides a list of tutorials for you to interact with Milvus.
| [HDBSCAN Clustering with Milvus](hdbscan_clustering_with_milvus.md) | Quickstart | vector search |
| [Use ColPali for Multi-Modal Retrieval with Milvus](use_ColPali_with_milvus.md) | Quickstart | vector search |
| [Vector Visualization](vector_visualization.md) | Quickstart | vector search |
| [Movie Recommendation with Milvus](movie_recommendation_with_milvus.md) | Recommendation System | vector search |
| [Movie Recommendation with Milvus](movie_recommendation_with_milvus.md) | Recommendation System | vector search |

0 comments on commit b24299a

Please sign in to comment.