----------------------
Based on the information provided in the extracts, it appears that when you create a
QdrantVectorStore
instance, you pass the
client
and
collection_name
as arguments. However, the extracts do not explicitly state whether the collection needs to be pre-existing or if it's created if it doesn't exist already.
Here's an example of creating a
QdrantVectorStore
:
vector_store = QdrantVectorStore(
client=client,
collection_name="paul_graham"
)
(Source:
LlamaIndex Documentation ())
For a definitive answer, you may want to refer to the official Qdrant or LlamaIndex documentation or source code.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------