From 3e9c90fdd6f157e9987fabb9faacdb67aaa1404f Mon Sep 17 00:00:00 2001 From: CaroFG Date: Mon, 23 Feb 2026 14:49:26 +0000 Subject: [PATCH] Remove gemini mentions from conversational search guide and chat api ref --- learn/chat/getting_started_with_chat.mdx | 16 +--------------- reference/api/chats.mdx | 18 ++---------------- 2 files changed, 3 insertions(+), 31 deletions(-) diff --git a/learn/chat/getting_started_with_chat.mdx b/learn/chat/getting_started_with_chat.mdx index 328235bf9..7cc7f5d05 100644 --- a/learn/chat/getting_started_with_chat.mdx +++ b/learn/chat/getting_started_with_chat.mdx @@ -88,7 +88,7 @@ curl \ The next step is to create a workspace. Chat completion workspaces are isolated configurations targeting different use cases. Each workspace can: -- Use different embedding providers (OpenAI, Azure OpenAI, Mistral, Gemini, vLLM) +- Use different embedding providers (OpenAI, Azure OpenAI, Mistral, vLLM) - Establish separate conversation contexts via baseline prompts - Access a specific set of indexes @@ -142,20 +142,6 @@ curl \ }' ``` -```bash Gemini -curl \ - -X PATCH 'MEILISEARCH_URL/chats/WORKSPACE_NAME/settings' \ - -H 'Authorization: Bearer MEILISEARCH_KEY' \ - -H 'Content-Type: application/json' \ - --data-binary '{ - "source": "gemini", - "apiKey": "PROVIDER_API_KEY", - "prompts": { - "system": "You are a helpful assistant. Answer questions based only on the provided context." - } - }' -``` - ```bash vLLM curl \ -X PATCH 'MEILISEARCH_URL/chats/WORKSPACE_NAME/settings' \ diff --git a/reference/api/chats.mdx b/reference/api/chats.mdx index 1440f4b18..6eeb53f04 100644 --- a/reference/api/chats.mdx +++ b/reference/api/chats.mdx @@ -68,7 +68,7 @@ Workspaces are groups of chat settings tailored towards specific use cases. You **Type**: String
**Default value**: N/A
-**Description**: Name of the chosen embeddings provider. Must be one of: `"openAi"`, `"azureOpenAi"`, `"mistral"`, `"gemini"`, or `"vLlm"` +**Description**: Name of the chosen embeddings provider. Must be one of: `"openAi"`, `"azureOpenAi"`, `"mistral"`, or `"vLlm"` #### `orgId` @@ -245,7 +245,7 @@ If a workspace does not exist, querying this endpoint will create it. | Name | Type | Description | | :---------------- | :----- | :---------------------------------------------------------------------------- | -| [`source`](#source) | String | LLM source: `"openAi"`, `"azureOpenAi"`, `"mistral"`, `"gemini"`, or `"vLlm"` | +| [`source`](#source) | String | LLM source: `"openAi"`, `"azureOpenAi"`, `"mistral"`, or `"vLlm"` | | [`orgId`](#orgid) | String | Organization ID for the LLM provider | | [`projectId`](#projectid) | String | Project ID for the LLM provider | | [`apiVersion`](#apiversion) | String | API version for the LLM provider | @@ -331,20 +331,6 @@ curl \ }' ``` -```bash gemini -curl \ - -X PATCH 'http://localhost:7700/chats/customer-support/settings' \ - -H 'Authorization: Bearer MEILISEARCH_KEY' \ - -H 'Content-Type: application/json' \ - --data-binary '{ - "source": "gemini", - "apiKey": "your-gemini-api-key", - "prompts": { - "system": "You are a helpful customer support assistant." - } - }' -``` - ```bash vLlm curl \ -X PATCH 'http://localhost:7700/chats/customer-support/settings' \