Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 1.07 KB

File metadata and controls

executable file
·
31 lines (22 loc) · 1.07 KB

Hybrid

Perform hybrid search on tables with auto-embeddings. Runs full-text and vector search and fuses results with RRF. For more information see Hybrid search

Properties

Name Type Description Notes
query str Search query string
var_field str Vector field name. [optional]

Example

from manticoresearch.models.hybrid import Hybrid

# TODO update the JSON string below
json = "{}"
# create an instance of Hybrid from a JSON string
hybrid_instance = Hybrid.from_json(json)
# print the JSON string representation of the object
print(Hybrid.to_json())

# convert the object into a dict
hybrid_dict = hybrid_instance.to_dict()
# create an instance of Hybrid from a dict
hybrid_from_dict = Hybrid.from_dict(hybrid_dict)

[Back to Model list] [Back to API list] [Back to README]