Skip to content

Commit

Permalink
update fetch and upsert
Browse files Browse the repository at this point in the history
  • Loading branch information
akojanic committed Oct 18, 2021
1 parent 5a78f1a commit 566dc2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quick_tour/interacting_with_the_index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@
],
"source": [
"# Fetch vectors by ID\n",
"fetch_results = index.fetch(ids=[\"A\", \"B\", \"C\"])\n",
"fetch_results = index.fetch(ids=[\"A\", \"B\"])\n",
"fetch_results"
]
},
Expand Down Expand Up @@ -799,7 +799,7 @@
],
"source": [
"# Update vectors by ID\n",
"index.upsert(vectors=[(\"A\", [0., 0.]), ])"
"index.upsert(vectors=[(\"A\",[0., 0.])])"
]
},
{
Expand Down

0 comments on commit 566dc2d

Please sign in to comment.