Skip to contents

qdrant_check_connection_validity checks if the qdrant connection proposed is valid. '

Usage

qdrant_check_connection_validity(conn, silent = TRUE)

Arguments

conn

a connection object created by get_qdrant_connection()

silent

boolean, defaults to TRUE. If FALSE, prints a message when the connection is established.

Details

Does a simple test to confirm if the qdrant connection is working as expected.

Examples

conn <- get_qdrant_connection()
#> → Connection to Qdrant confirmed
qdrant_check_connection_validity(conn,silent=FALSE)
#> → Connection to Qdrant confirmed
#> [1] TRUE