{ "cells": [ { "cell_type": "markdown", "id": "bb384510-d9b4-4fa1-84c2-f181eb28487d", "metadata": {}, "source": [ "# USearch\n", ">[USearch](https://unum-cloud.github.io/usearch/) is a Smaller & Faster Single-File Vector Search Engine\n", "\n", "USearch's base functionality is identical to FAISS, and the interface should look familiar if you have ever investigated Approximate Nearest Neigbors search. FAISS is a widely recognized standard for high-performance vector search engines. USearch and FAISS both employ the same HNSW algorithm, but they differ significantly in their design principles. USearch is compact and broadly compatible without sacrificing performance, with a primary focus on user-defined metrics and fewer dependencies." ] }, { "cell_type": "code", "execution_count": null, "id": "497fcd89-e832-46a7-a74a-c71199666206", "metadata": { "tags": [] }, "outputs": [], "source": [ "!pip install usearch" ] }, { "cell_type": "markdown", "id": "38237514-b3fa-44a4-9cff-30cd6bf50073", "metadata": {}, "source": [ "We want to use OpenAIEmbeddings so we have to get the OpenAI API Key. " ] }, { "cell_type": "code", "execution_count": 2, "id": "47f9b495-88f1-4286-8d5d-1416103931a7", "metadata": { "tags": [] }, "outputs": [], "source": [ "import os\n", "import getpass\n", "\n", "os.environ[\"OPENAI_API_KEY\"] = getpass.getpass(\"OpenAI API Key:\")" ] }, { "cell_type": "code", "execution_count": 2, "id": "aac9563e", "metadata": { "tags": [] }, "outputs": [], "source": [ "from langchain.embeddings.openai import OpenAIEmbeddings\n", "from langchain.text_splitter import CharacterTextSplitter\n", "from langchain.vectorstores import USearch\n", "from langchain.document_loaders import TextLoader" ] }, { "cell_type": "code", "execution_count": 3, "id": "a3c3999a", "metadata": { "tags": [] }, "outputs": [], "source": [ "from langchain.document_loaders import TextLoader\n", "\n", "loader = TextLoader(\"../../../extras/modules/state_of_the_union.txt\")\n", "documents = loader.load()\n", "text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0)\n", "docs = text_splitter.split_documents(documents)\n", "\n", "embeddings = OpenAIEmbeddings()" ] }, { "cell_type": "code", "execution_count": 4, "id": "5eabdb75", "metadata": { "tags": [] }, "outputs": [], "source": [ "db = USearch.from_documents(docs, embeddings)\n", "\n", "query = \"What did the president say about Ketanji Brown Jackson\"\n", "docs = db.similarity_search(query)" ] }, { "cell_type": "code", "execution_count": 5, "id": "4b172de8", "metadata": { "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections. \n", "\n", "Tonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service. \n", "\n", "One of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court. \n", "\n", "And I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence.\n" ] } ], "source": [ "print(docs[0].page_content)" ] }, { "cell_type": "markdown", "id": "f13473b5", "metadata": {}, "source": [ "## Similarity Search with score\n", "The `similarity_search_with_score` method allows you to return not only the documents but also the distance score of the query to them. The returned distance score is L2 distance. Therefore, a lower score is better." ] }, { "cell_type": "code", "execution_count": 6, "id": "186ee1d8", "metadata": {}, "outputs": [], "source": [ "docs_and_scores = db.similarity_search_with_score(query)" ] }, { "cell_type": "code", "execution_count": 7, "id": "284e04b5", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(Document(page_content='Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections. \\n\\nTonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service. \\n\\nOne of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court. \\n\\nAnd I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence.', metadata={'source': '../../../extras/modules/state_of_the_union.txt'}),\n", " 0.1845687)" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "docs_and_scores[0]" ] }, { "cell_type": "code", "execution_count": null, "id": "483f6013-fb32-4756-a9e2-3d529fb81f68", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.1" } }, "nbformat": 4, "nbformat_minor": 5 }