Skip to content

Commit 5307fb9

Browse files
committed
Fix vLLM casing to vLlm
1 parent bfd517f commit 5307fb9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

guides/ai/getting_started_with_chat.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ curl \
9999
}'
100100
```
101101

102-
```bash vllm
102+
```bash vLlm
103103
curl \
104104
-X PUT 'http://localhost:7700/chats/my-assistant/settings' \
105105
-H 'Authorization: Bearer MASTER_KEY' \

learn/ai_powered_search/conversational_search_with_chat.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Meilisearch's chatCompletions consolidates these into one streamlined process:
6969

7070
The chatCompletions feature operates through workspaces, which are isolated configurations for different use cases or tenants. Each workspace can:
7171

72-
- Use different LLM sources (openAi, azureOpenAi, mistral, gemini, vllm)
72+
- Use different LLM sources (openAi, azureOpenAi, mistral, gemini, vLlm)
7373
- Apply custom prompts
7474
- Access specific indexes based on API keys
7575
- Maintain separate conversation contexts

reference/api/chats.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ The chatCompletions feature is experimental and must be enabled through [experim
4040

4141
| Name | Type | Description |
4242
| :------------- | :----- | :------------------------------------------------------------------------------------ |
43-
| **`source`** | String | LLM source: `"openAi"`, `"azureOpenAi"`, `"mistral"`, `"gemini"`, or `"vllm"` |
44-
| **`apiKey`** | String | API key for the LLM provider (write-only, optional for vllm) |
45-
| **`baseUrl`** | String | Base URL for the provider (required for azureOpenAi and vllm) |
43+
| **`source`** | String | LLM source: `"openAi"`, `"azureOpenAi"`, `"mistral"`, `"gemini"`, or `"vLlm"` |
44+
| **`apiKey`** | String | API key for the LLM provider (write-only, optional for vLlm) |
45+
| **`baseUrl`** | String | Base URL for the provider (required for azureOpenAi and vLlm) |
4646
| **`prompts`** | Object | Prompts object containing system prompts and other configuration |
4747

4848
## Chat completions
@@ -250,13 +250,13 @@ curl \
250250
}'
251251
```
252252

253-
```bash vllm
253+
```bash vLlm
254254
curl \
255255
-X PUT 'http://localhost:7700/chats/customer-support/settings' \
256256
-H 'Authorization: Bearer MASTER_KEY' \
257257
-H 'Content-Type: application/json' \
258258
--data-binary '{
259-
"source": "vllm",
259+
"source": "vLlm",
260260
"baseUrl": "http://your-vllm-server:8000",
261261
"prompts": {
262262
"system": "You are a helpful customer support assistant."

0 commit comments

Comments
 (0)