Skip to contents

qdrant_check_collection_existence establishes a connection with a qdrant instance and checks if a collection exists. '

Usage

qdrant_check_collection_existence(conn, collection_name = NA_character_)

Arguments

conn

a connection object created by get_qdrant_connection()

collection_name

the name of a collection for which you want to check the existence. Defaults to NA.

Details

Confirms the existence of a qdrant collection. Returns TRUE or FALSE

Examples

conn <- get_qdrant_connection()
#> → Connection to Qdrant confirmed
qdrant_check_collection_existence(conn, collection_name="hi_there")
#> [1] FALSE