Skip to content

Commit c716171

Browse files
fix leftover closing component tag
1 parent 978fc2d commit c716171

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

learn/chat/getting_started_with_chat.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ In most cases, that is only the beginning of adding conversational search to you
238238

239239
Meilisearch's chat endpoint was designed to be OpenAI-compatible. This means you can use the official OpenAI SDK in any supported programming language, even if your provider is not OpenAI.
240240

241-
Integrating Meiliearch and the OpenAI SDK with JavaScript would look lik this:
241+
Integrating Meilisearch and the OpenAI SDK with JavaScript would look like this:
242242

243243
```javascript JavaScript
244244
import OpenAI from 'openai';
@@ -260,8 +260,6 @@ for await (const chunk of completion) {
260260
261261
Take particular note of the last lines, which output the streamed responses to the browser console. In a real-life application, you would instead print the response chunks to the user interface.
262262
263-
</CodeGroup>
264-
265263
## Troubleshooting
266264
267265
### Common issues and solutions

learn/indexing/optimize_indexing_performance.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Focus on the **longest-running steps** and investigate which index settings or d
6262

6363
| Description | Optimization |
6464
|--------------|--------------|
65-
| Time spent waiting for CPU-bound extraction. | No direct optimization possible. Indicates a CPU bottleneck. Use more cores or scale horizontally with [sharding](/learn/advanced/sharding). |
65+
| Time spent waiting for CPU-bound extraction. | No direct optimization possible. Indicates a CPU bottleneck. Use more cores or scale horizontally with [sharding](/learn/multi_search/implement_sharding). |
6666

6767
### `post processing facets > strings bulk` / `numbers bulk`
6868

0 commit comments

Comments
 (0)