Typesense · Schema

NLSearchModel

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
id string Unique identifier of the NL search model.
model_name string Name of the model.
model_config object Model configuration parameters.
View JSON Schema on GitHub

JSON Schema

typesense-nlsearchmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NLSearchModel",
  "title": "NLSearchModel",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the NL search model."
    },
    "model_name": {
      "type": "string",
      "description": "Name of the model."
    },
    "model_config": {
      "type": "object",
      "description": "Model configuration parameters."
    }
  }
}