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 Oct 8, 2023
1 parent b8ed37f commit c5b39a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions v2.2.x/site/en/userGuide/create_collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ CreateCollectionParam createCollectionReq = CreateCollectionParam.newBuilder()

```curl
curl -X 'POST' \
'${MILVUS_HOST}:${MILVUS_PORT}/v1/vector/collections/create'' \
-H 'Authorization: Bearer ${TOKEN}'
'${MILVUS_HOST}:${MILVUS_PORT}/v1/vector/collections/create' \
-H 'Authorization: Bearer ${TOKEN}' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
Expand Down
5 changes: 1 addition & 4 deletions v2.2.x/site/en/userGuide/insert_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ curl -X 'POST' \
-d '{
"collectionName": "collection1",
"data": {
"id": "id1",
"vector": [0.1, 0.2, 0.3],
"name": "tom",
"email": "[email protected]",
Expand All @@ -190,18 +189,16 @@ curl --request POST \
--url '${MILVUS_HOST}:${MILVUS_PORT}/v1/vector/insert' \
--header 'Authorization: Bearer <TOKEN>' \
--header 'accept: application/json' \
--header 'content-type: application/json'
--header 'content-type: application/json' \
-d '{
"collectionName": "collection1",
"data": [
{
"id": "id1",
"vector": [0.1, 0.2, 0.3],
"name": "bob",
"email": "[email protected]",
"date": "2023-04-13"
},{
"id": "id2",
"vector": [0.1, 0.2, 0.3],
"name": "ally",
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "v2.3.x",
"version": "v2.2.x",
"released": "yes"
}

0 comments on commit c5b39a1

Please sign in to comment.