meilisearch-rust
meilisearch-rust copied to clipboard
Rust wrapper for the Meilisearch API.
# Pull Request ## Related issue Fixes #260 ## What does this PR do? - ... ## PR checklist Please check if your PR fulfills the following requirements: - [x]...
When querying the database with this SDK, the sorting order is different than using the Rest API: **Index** ``` { "uid": "users", "primaryKey": "user_id" } ``` **Settings** ``` { "displayedAttributes":["user_id"],...
*Following this [central issue](https://github.com/meilisearch/integration-guides/issues/296)* This is related to a newly introduced feature in [Meilisearch v1.7.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.7.0): show ranking score details at search. Refer to [docs for more information](https://www.meilisearch.com/docs/reference/api/search#ranking-score-details). - [ ]...
# Pull Request ## Related issue Fixes https://github.com/meilisearch/meilisearch-rust/issues/541 Fixes https://github.com/meilisearch/meilisearch-rust/issues/612 Fixes https://github.com/meilisearch/meilisearch-rust/issues/621 Fixes https://github.com/meilisearch/meilisearch-rust/issues/646 ## What does this PR do? - Adds the required settings - `with_embedders` does use the...
```rust use meilisearch_sdk::client::*; use serde::{Serialize, Deserialize}; use futures::executor::block_on; #[derive(Serialize, Deserialize, Debug)] struct Movie { id: usize, title: String, genres: Vec, } fn main() { block_on(async move { let client =...
Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version. Release notes Sourced from env_logger's releases. v0.11.2 [0.11.2] - 2024-02-13 Changelog Sourced from env_logger's changelog. [0.11.2] - 2024-02-13 [0.11.1] -...
You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting...
**Description** Currently, the `embedders` cannot be added via the sdk, only via http. **Basic example** instead of ```sh curl \ -X PATCH 'http://localhost:7700/indexes/movies/settings' \ -H 'Content-Type: application/json' \ --data-binary '{...
You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting...
This PR is similar to https://github.com/meilisearch/meilisearch-rust/pull/426 and https://github.com/meilisearch/meilisearch-rust/pull/459, and an alternative solution to https://github.com/meilisearch/meilisearch-rust/issues/452. It adds the ability to switch to a `reqwest` backend by using either the `reqwest-native-tls` or...