{ "cells": [ { "cell_type": "markdown", "id": "07c1e3b9", "metadata": {}, "source": [ "# Vector DB Question/Answering\n", "\n", "This example showcases question answering over a vector database." ] }, { "cell_type": "code", "execution_count": 1, "id": "82525493", "metadata": {}, "outputs": [], "source": [ "from langchain.embeddings.openai import OpenAIEmbeddings\n", "from langchain.vectorstores.faiss import FAISS\n", "from langchain.text_splitter import CharacterTextSplitter\n", "from langchain import OpenAI, VectorDBQA" ] }, { "cell_type": "code", "execution_count": 3, "id": "5c7049db", "metadata": {}, "outputs": [], "source": [ "with open('../state_of_the_union.txt') as f:\n", " state_of_the_union = f.read()\n", "text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0)\n", "texts = text_splitter.split_text(state_of_the_union)\n", "\n", "embeddings = OpenAIEmbeddings()\n", "docsearch = FAISS.from_texts(texts, embeddings)" ] }, { "cell_type": "code", "execution_count": 4, "id": "3018f865", "metadata": {}, "outputs": [], "source": [ "qa = VectorDBQA(llm=OpenAI(), vectorstore=docsearch)" ] }, { "cell_type": "code", "execution_count": 5, "id": "032a47f8", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "' The President said that Ketanji Brown Jackson is a consensus builder and has received a broad range of support since she was nominated.'" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "query = \"What did the president say about Ketanji Brown Jackson\"\n", "qa.run(query)" ] }, { "cell_type": "code", "execution_count": null, "id": "f0f20b92", "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.7.6" } }, "nbformat": 4, "nbformat_minor": 5 }