from_texts(
cls: type[QdrantVectorStore],
texts: listConstruct an instance of QdrantVectorStore from a list of texts.
This is a user-friendly interface that:
This is intended to be a quick way to get started.
from langchain_qdrant import Qdrant
from langchain_openai import OpenAIEmbeddings
embeddings = OpenAIEmbeddings()
qdrant = Qdrant.from_texts(texts, embeddings, url="http://localhost:6333")