From ae67d5eef097b1e722b4dc101bc8b696149d3096 Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Wed, 13 Mar 2024 09:45:04 +0100 Subject: [PATCH] Update milli/src/vector/error.rs Fix Meilisearch capitalization --- milli/src/vector/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milli/src/vector/error.rs b/milli/src/vector/error.rs index 3f4d5eb51..20bf49a6b 100644 --- a/milli/src/vector/error.rs +++ b/milli/src/vector/error.rs @@ -79,7 +79,7 @@ pub enum EmbedErrorKind { OllamaTooManyRequests(OllamaError), #[error("received internal error from Ollama: {0}")] OllamaInternalServerError(OllamaError), - #[error("model not found. MeiliSearch will not automatically download models from the Ollama library, please pull the model manually: {0}")] + #[error("model not found. Meilisearch will not automatically download models from the Ollama library, please pull the model manually: {0}")] OllamaModelNotFoundError(OllamaError), #[error("received unhandled HTTP status code {0} from Ollama")] OllamaUnhandledStatusCode(u16),