gui machiavelli
gui machiavelli
This release introduces a new embedder setting, `binaryQuantized`. This setting converts embeddings of floating point numbers into boolean values. This reduces relevancy of semantic search results, but greatly reduces database...
All embedders created through the index settings route now accept a new option, `documentTemplateMaxBytes`. Setting this option results in Meilisearch truncating the maximum size of the text sent to the...
`field.is_searchable` allows users to filter out any documents that are not searchable. This changes the default value of `documentTemplate` to: ``` {% for field in fields %} {% if field.is_searchable...
If a query specifies `hybrid` with a `semanticRatio` bigger than `0` and `vector`, but no `q`, Meilisearch now performs a pure semantic search. If `q` is missing and `semanticRatio` is...
## #2986 No telemetry changes. ## #2985 No telemetry changes. ## #2987 #2992 #2990 #2993 > NEW: embedders.document_template_max_bytes : a value indicating the largest value for document TemplateMaxBytes across all...
## API changes 1. `/multi-search`: new properties for the `federation` parameter 2. `/settings/localized-attributes`: accepts ISO-639-1 bigrams 3. changes to `/settings/embedders` accepted properties and document templates 4. changes to `/search` `hybrid`...
In v1.11, search queries using `hybrid` must specify the target `embedder`. ## Task - [ ] Update `reference/api/search#hybrid-search-experimental` ## Reference - SME: @dureuill - Engine issue: https://github.com/meilisearch/meilisearch/issues/4738 - PRD: https://meilisearch.notion.site/v1-11-AI-search-changes-0e37727193884a70999f254fa953ce6e#1044b06b651f80edb9d4ef6dc367bad0
With v1.11, new OpenAI embedders will default to `text-embedding-3-small`. This change does not affect existing embedders. ## Tasks - [ ] Update `reference/api/settings#model` ## References - PRD: https://meilisearch.notion.site/v1-11-AI-search-changes-0e37727193884a70999f254fa953ce6e#b4685a48c4784262a149ec307ec58671 - SME:...
v1.11 adds a new filter operator, `STARTS_WITH`. `STARTS_WITH` matches any field values that start with the specified. Matches do not need to be perfect: `dog.name STARTS_WITH kef` will match `dog.name...