Commit Graph

316 Commits

Author SHA1 Message Date
Tamo 673b6e1dc0 fix a flaky test 2024-05-16 11:28:14 +02:00
Tamo f2d0a59f1d when no searchable attributes are defined, makes all the weight equals to zero 2024-05-16 01:06:33 +02:00
ManyTheFish a1ea224da9 Fix tests 2024-04-16 17:29:34 +02:00
ManyTheFish a489b406b4 fix test 2024-04-16 14:39:06 +02:00
Louis Dureuil ca499a0302
Fix test after rebase 2024-04-04 16:04:07 +02:00
Louis Dureuil 355e5282b2
Remove `_semanticScore` 2024-04-04 16:04:07 +02:00
Louis Dureuil 7c27417a5d
Add tests 2024-04-04 16:04:07 +02:00
Louis Dureuil 1ff2a2d6fb
Add semanticHitCount 2024-04-04 16:04:06 +02:00
meili-bors[bot] 5509bafff8
Merge #4535
4535: Support Negative Keywords r=ManyTheFish a=Kerollmops

This PR fixes #4422 by supporting `-` before any word in the query.

The minus symbol `-`, from the ASCII table, is not the only character that can be considered the negative operator. You can see the two other matching characters under the `Based on "-" (U+002D)` section on [this unicode reference website](https://www.compart.com/en/unicode/U+002D).

It's important to notice the strange behavior when a query includes and excludes the same word; only the derivative ( synonyms and split) will be kept:
 - If you input `progamer -progamer`, the engine will still search for `pro gamer`.
 - If you have the synonym `like = love` and you input `like -like`, it will still search for `love`.

## TODO
 - [x] Add analytics
 - [x] Add support to the `-` operator
 - [x] Make sure to support spaces around `-` well
 - [x] Support phrase negation
 - [x] Add tests


Co-authored-by: Clément Renault <clement@meilisearch.com>
2024-04-04 13:10:27 +00:00
Clément Renault 90e812fc0b
Add some tests 2024-04-04 15:08:37 +02:00
meili-bors[bot] 56bf8503db
Merge #4537
4537: Expose distribution shift in settings r=ManyTheFish a=dureuill

See [usage page](https://meilisearch.notion.site/v1-8-AI-search-API-usage-135552d6e85a4a52bc7109be82aeca42#d652adc0890445658aaf36352dbc8802)

# Changes

- Distribution shift added to all embedders.
- Exposed in settings
- Changed the reindexing logic to not trigger a reindex operation when only the distribution shift or API key change

Co-authored-by: Louis Dureuil <louis@meilisearch.com>
2024-04-03 09:08:58 +00:00
meili-bors[bot] 78668584cd
Merge #4533
4533: Hide api key in settings and task queue r=dureuill a=dureuill

# Pull Request

See [Usage page](https://meilisearch.notion.site/v1-8-AI-search-API-usage-135552d6e85a4a52bc7109be82aeca42#117f5ff7b19f4d95bb3ae0005f6c6633)

## Motivation

See [slack discussion (internal link)](https://meilisearch.slack.com/archives/C06GQP7FQ6P/p1709804022298749)


## Changes

- The value of the `apiKey` parameter is now hidden in the settings and the details of the task queue.

Co-authored-by: Louis Dureuil <louis@meilisearch.com>
2024-03-28 16:02:53 +00:00
Louis Dureuil cde7ce4f44
Add test 2024-03-27 14:02:09 +01:00
Tamo 3a1f458139 fix a flaky test 2024-03-26 21:06:55 +01:00
Tamo 2e36f069c2 fmt imports 2024-03-26 19:23:55 +01:00
Tamo 8127c9a115 handle the case of a queue of zero elements 2024-03-26 19:04:39 +01:00
Tamo e7704f1fc1 add a test to ensure we effectively returns a retry-after when the search queue is full 2024-03-26 18:08:59 +01:00
Tamo e433fd53e6 rename the method to get a permit and use it in all search requests 2024-03-26 17:28:03 +01:00
Tamo c41e1274dc push and test the search queue datastructure 2024-03-26 15:56:43 +01:00
Louis Dureuil 9a95ed619d
Add tests 2024-03-26 10:36:56 +01:00
Tamo d8fe4fe49d return the order in the score details 2024-03-19 15:45:04 +01:00
Tamo 4369e9e97c add an error code test on the setting 2024-03-19 11:14:28 +01:00
Tamo 6a0c399c2f rename the search_cutoff parameter to search_cutoff_ms 2024-03-19 10:35:47 +01:00
Tamo 038c26c118 stop returning the degraded boolean when a search was cutoff 2024-03-19 10:35:47 +01:00
Tamo ad9192fbbf reduce the size of an integration test 2024-03-19 10:35:47 +01:00
Tamo b8cda6c300 fix the search cutoff and add a test 2024-03-19 10:35:47 +01:00
Tamo b72495eb58 fix the settings tests 2024-03-19 10:28:23 +01:00
Tamo d1db495119 add a settings for the search cutoff 2024-03-19 10:28:23 +01:00
meili-bors[bot] abd954755d
Merge #4476
4476: Make the `/facet-search` route use the `sortFacetValuesBy` setting r=irevoire a=Kerollmops

This PR fixes #4423 by ensuring that the `/facet-search` route uses the `sortFacetValuesBy` setting.

Note for the documentation team (to be moved in the tracking issue): Using the new `sortFacetValuesBy` setting can slow down the facet-search requests as Meilisearch iterates over the whole list of facet values and computes the count of documents on every entry. That is hardly or even impossible to optimize correctly.

### TODO
 - [x] Create a custom HashMap wrapper for the facet `OrderBy` settings.
         This wrapper will return the `OrderBy` setting of the facet, if not defined will use the default `*` one, and if not there either (strange) will fall back on the lexicographic one.
- [x] Create a `ValuesCollection` wrapper that implements the logic for the lexicographic and count order by.
  - [x] Use it when there is no search query.
  - [x] Use it when there is a search query with and without allowed typos.
  - [x] Do not change the original logic, only use a wrapper.
- [x] Add tests

Co-authored-by: Clément Renault <clement@meilisearch.com>
2024-03-13 14:36:14 +00:00
Clément Renault 6c9823d7bb
Add tests to sortFacetValuesBy count 2024-03-13 11:59:39 +01:00
Tamo 8ec3e30d2b Merge branch 'main' into tmp-release-v1.7.0 2024-03-11 15:39:51 +01:00
Tamo f053c280e1 add tests when the field limit is reached 2024-03-06 18:42:41 +01:00
Tamo b130917933 add the content type in the webhook + improve the test 2024-03-05 11:22:29 +01:00
meili-bors[bot] b87485e80d
Merge #4433
4433: Enhance facet incremental r=Kerollmops a=ManyTheFish

# Pull Request

## Related issue
Fixes #4367
Fixes #4409

## What does this PR do?

- Add a test reproducing #4409
- Fix #4409 by removing a document from a level only if it is no more present in all the linked sub-level nodes
- Optimize facet Incremental indexing by creating or deleting a complete level once per field id instead of for each facet value
- Optimize facet Incremental indexing by doing the additions and the deletions in the same process instead of doing them separately


Co-authored-by: ManyTheFish <many@meilisearch.com>
2024-02-28 15:28:46 +00:00
Tamo a478392b7a create a test with the dry-run parameter enabled 2024-02-26 13:59:41 +01:00
Tamo bbf3fb88ca rename the cli parameter 2024-02-26 13:59:40 +01:00
Tamo 507739bd98 add an experimental cli parameter to allow specifying your task id 2024-02-26 13:58:03 +01:00
Tamo eb25b07390 let you specify your task id 2024-02-26 13:56:31 +01:00
Tamo c2e2003a80 create a test with the dry-run parameter enabled 2024-02-22 15:51:47 +01:00
Tamo 693ba8dd15 rename the cli parameter 2024-02-21 14:33:40 +01:00
Tamo 01ae46dd80 add an experimental cli parameter to allow specifying your task id 2024-02-20 11:24:44 +01:00
Tamo 9ee4f55e6c let you specify your task id 2024-02-19 14:29:33 +01:00
ManyTheFish 865b415b3f Add test rerpoducing bug 2024-02-15 16:00:48 +01:00
Tamo a081da0d90 add support for the json format in the stream route 2024-02-14 15:34:39 +01:00
Tamo 3b6544db6d Implement the experimental log mode cli flag 2024-02-13 18:09:15 +01:00
Tamo 2c88131bb1
rename the fmt mode to human 2024-02-08 15:04:06 +01:00
Tamo 35aa9d5904
fix an error message 2024-02-08 15:04:06 +01:00
Louis Dureuil ef994d84d0
Change error messages and fix tests 2024-02-08 15:04:06 +01:00
Louis Dureuil 1b74010e9e
Remove "with_line_numbers" 2024-02-08 15:04:06 +01:00
Tamo bcf7909bba
add a profile_memory parameter disabled by default 2024-02-08 15:04:05 +01:00