docs: fix spelling mistake in concepts.mdx: Fouth -> Fourth (#24067)

**Description:** 
Corrected the spelling for fourth.

**Twitter handle:** @dismasbanda
This commit is contained in:
Dismas Banda 2024-07-10 16:35:54 +02:00 committed by GitHub
parent 1e1fd30def
commit 91b37b2d81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1022,7 +1022,7 @@ See our [blog post overview](https://blog.langchain.dev/query-construction/) and
#### Indexing
Fouth, consider the design of your document index. A simple and powerful idea is to **decouple the documents that you index for retrieval from the documents that you pass to the LLM for generation.** Indexing frequently uses embedding models with vector stores, which [compress the semantic information in documents to fixed-size vectors](/docs/concepts/#embedding-models).
Fourth, consider the design of your document index. A simple and powerful idea is to **decouple the documents that you index for retrieval from the documents that you pass to the LLM for generation.** Indexing frequently uses embedding models with vector stores, which [compress the semantic information in documents to fixed-size vectors](/docs/concepts/#embedding-models).
Many RAG approaches focus on splitting documents into chunks and retrieving some number based on similarity to an input question for the LLM. But chunk size and chunk number can be difficult to set and affect results if they do not provide full context for the LLM to answer a question. Furthermore, LLMs are increasingly capable of processing millions of tokens.