SearchConfigInput (Input)
Description
SearchConfigInput class is used to configure the search.
Fields
| Name | Description |
|---|---|
| fullTextEnabled - Boolean! | Enable full text search |
| fusionKind - SearchFusionKind! | Fusion kind |
| fusionScoreThreshold - Float! | Fusion score threshold |
| vectorEmbedEnabled - Boolean! | Enable vector embed search |
| vectorEmbedScoreThreshold - Float! | Vector embed score threshold |
| vectorTextEnabled - Boolean! | Enable vector text search |
| vectorTextScoreThreshold - Float! | Vector text score threshold |
input SearchConfigInput {
fullTextEnabled: Boolean!
fusionKind: SearchFusionKind!
fusionScoreThreshold: Float!
vectorEmbedEnabled: Boolean!
vectorEmbedScoreThreshold: Float!
vectorTextEnabled: Boolean!
vectorTextScoreThreshold: Float!
}