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 Sep 12, 2023
1 parent 78a3e51 commit 5af3d95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion v2.2.x/site/en/getstarted/install_SDKs/install-csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The current version of Milvus supports SDKs in Python, Node.js, GO, Java, and C#
Run the following command to install Milvus C# SDK.

```shell
> dotnet add package Milvus.Client --version 2.2.2-preview.5
dotnet add package Milvus.Client --version 2.2.2-preview.6
```

## What's next
Expand Down
12 changes: 2 additions & 10 deletions v2.2.x/site/en/userGuide/create_collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,14 +151,6 @@ CreateCollectionParam createCollectionReq = CreateCollectionParam.newBuilder()
.build();
```

<div style="display: none">

```shell
create collection -c book -f book_id:INT64:book_id -f word_count:INT64:word_count -f book_intro:FLOAT_VECTOR:2 -p book_id
```

</div>

```curl
curl -X 'POST' \
'${MILVUS_HOST}:${MILVUS_PORT}/v1/vector/collections/create'' \
Expand Down Expand Up @@ -597,7 +589,7 @@ var schema = new CollectionSchema
</thead>
<tbody>
<tr>
<td><code>CollectionSchema</code><td>
<td><code>CollectionSchema</code></td>
<td>The logical definition of a collection, describing the fields which makes it up.</td>
<td>Possible parameters: <ul>
<li><code>Fields</code>: A list of Fields derived from the <code>FieldSchema</code> class.</li>
Expand All @@ -606,7 +598,7 @@ var schema = new CollectionSchema
</ul></td>
</tr>
<tr>
<td><code>FieldSchema</code><td>
<td><code>FieldSchema</code></td>
<td>The logical definition of a collection, describing the fields which makes it up.</td>
<td>Possible methods: <ul>
<li><code>Create(string name, MilvusDataType dataType, bool isPrimaryKey, bool autoId, bool isPartitionKey, string description)</code></li>
Expand Down

0 comments on commit 5af3d95

Please sign in to comment.