Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis committed Dec 10, 2024
1 parent 2943402 commit 165cfe5
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions docs/docs/integrations/vectorstores/sqlserver.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -459,12 +459,7 @@
"source": [
"# if you already have embeddings you want to search on\n",
"simsearch_by_vector = vector_store.similarity_search_by_vector(\n",
" [\n",
" -0.0033353185281157494,\n",
" -0.017689190804958344,\n",
" -0.01590404286980629,\n",
" ...\n",
" ]\n",
" [-0.0033353185281157494, -0.017689190804958344, -0.01590404286980629, ...]\n",
")\n",
"print(simsearch_by_vector)"
]
Expand All @@ -486,8 +481,9 @@
}
],
"source": [
".\n",
" ]\n",
"# Similarity Search with Score if you already have embeddings you want to search on\n",
"simsearch_by_vector_with_score = vector_store.similarity_search_by_vector_with_score(\n",
" [-0.0033353185281157494, -0.017689190804958344, -0.01590404286980629, ...]\n",
")\n",
"print(simsearch_by_vector_with_score)"
]
Expand Down

0 comments on commit 165cfe5

Please sign in to comment.