Skip to contents

qdrant_list_all_collections establishes a connection with a qdrant instance and lists all collections. '

Usage

qdrant_list_all_collections(conn)

Arguments

conn

a connection object created by get_qdrant_connection()

Details

Lists all the collections available on the qdrant instance. Each collection can have different size of vector embeddings

Examples

conn <- get_qdrant_connection()
#> → Connection to Qdrant confirmed
qdrant_list_all_collections(conn)
#> $result
#> $result$collections
#> list()
#> 
#> 
#> $status
#> [1] "ok"
#> 
#> $time
#> [1] 3.11e-06
#>