From cd1879f5e75fc9e6a8c04ac839909e0d6f2fb541 Mon Sep 17 00:00:00 2001 From: Anush Date: Tue, 14 May 2024 08:21:57 +0530 Subject: [PATCH] docs: Qdrant partner package reference (#21649) ## Description: As the title goes. --- docs/docs/integrations/platforms/index.mdx | 1 + docs/docs/integrations/providers/qdrant.mdx | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/docs/integrations/platforms/index.mdx b/docs/docs/integrations/platforms/index.mdx index fdce8a2b8eb..8cba27a2bdb 100644 --- a/docs/docs/integrations/platforms/index.mdx +++ b/docs/docs/integrations/platforms/index.mdx @@ -36,6 +36,7 @@ These providers have standalone `langchain-{provider}` packages for improved ver - [Nvidia](/docs/integrations/providers/nvidia) - [OpenAI](/docs/integrations/platforms/openai) - [Pinecone](/docs/integrations/providers/pinecone) +- [Qdrant](/docs/integrations/providers/qdrant) - [Robocorp](/docs/integrations/providers/robocorp) - [Together AI](/docs/integrations/providers/together) - [Upstage](/docs/integrations/providers/upstage) diff --git a/docs/docs/integrations/providers/qdrant.mdx b/docs/docs/integrations/providers/qdrant.mdx index fdaaef5abf0..40e9c3ee70e 100644 --- a/docs/docs/integrations/providers/qdrant.mdx +++ b/docs/docs/integrations/providers/qdrant.mdx @@ -7,10 +7,10 @@ ## Installation and Setup -Install the Python SDK: +Install the Python partner package: ```bash -pip install qdrant-client +pip install langchain-qdrant ``` @@ -21,7 +21,7 @@ whether for semantic search or example selection. To import this vectorstore: ```python -from langchain_community.vectorstores import Qdrant +from langchain_qdrant import Qdrant ``` For a more detailed walkthrough of the Qdrant wrapper, see [this notebook](/docs/integrations/vectorstores/qdrant)