SearchType#

class langchain_community.vectorstores.falkordb_vector.SearchType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#

Enumerator for different search strategies in FalkorDB VectorStore.

  • SearchType.VECTOR: This option searches using only

the vector indexes in the vectorstore, relying on the similarity between vector embeddings to return relevant results.

  • SearchType.HYBRID: This option performs a combined search,

querying both the full-text indexes and the vector indexes. It integrates traditional text search with vector-based search for more comprehensive results.

VECTOR = 'vector'#
HYBRID = 'hybrid'#

Examples using SearchType