You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/settings.rs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,11 +41,13 @@ pub struct FacetingSettings {
41
41
#[serde(rename_all = "camelCase", tag = "source")]
42
42
pubenumEmbedder{
43
43
/// Compute embeddings inside meilisearch with models from [HuggingFace](https://huggingface.co/).
44
+
///
44
45
/// You may be able to significantly improve performance by [compiling a CUDA-compatible Meilisearch binary](https://www.meilisearch.com/docs/guides/ai/computing_hugging_face_embeddings_gpu).
45
46
/// This is a resource-intensive operation and might affect indexing performance negatively.
46
47
HuggingFace(HuggingFaceEmbedderSettings),
47
48
/// Use OpenAI's API to generate embeddings
48
-
/// Depending on hardware, this is a
49
+
///
50
+
/// Depending on your hardware, this network request may be faster
49
51
OpenAi(OpenAIEmbedderSettings),
50
52
/// [Ollama](https://ollama.com/) is a framework for building and running language models locally.
0 commit comments