Skip to content

Commit a65adea

Browse files
houtaroynerdai
andauthored
📃 docs(Learn): Loading Data (#14762)
* 📃 docs(Learn): Loading Data 1. add understanding\using_llms\using_llms.md missing full stop 2. fix understanding\loading\loading.md DatabaseReader link 3. add module_guides\loading\node_parsers\modules.md node_parsers modules SemanticSplitterNodeParser video link 4. fix docs\docs\examples\ingestion\document_management_pipeline.ipynb redis link * fix one link --------- Co-authored-by: Andrei Fajardo <andrei@nerdai.io>
1 parent 2e1892f commit a65adea

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/docs/examples/ingestion/document_management_pipeline.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"\n",
1818
"If we do not attach a vector store, we can only check for and remove duplicate inputs.\n",
1919
"\n",
20-
"If a vector store is attached, we can also handle upserts! We have [another guide](/examples/ingestion/redis_ingestion_pipeline.ipynb) for upserts and vector stores."
20+
"If a vector store is attached, we can also handle upserts! We have [another guide](/en/stable/examples/ingestion/redis_ingestion_pipeline) for upserts and vector stores."
2121
]
2222
},
2323
{

docs/docs/module_guides/loading/node_parsers/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ A full example can be found [here in combination with the `MetadataReplacementNo
130130

131131
### SemanticSplitterNodeParser
132132

133-
"Semantic chunking" is a new concept proposed Greg Kamradt in his video tutorial on 5 levels of embedding chunking: https://youtu.be/8OJC21T2SL4?t=1933.
133+
"Semantic chunking" is a new concept proposed Greg Kamradt in his video tutorial on 5 levels of embedding chunking: [https://youtu.be/8OJC21T2SL4?t=1933](https://youtu.be/8OJC21T2SL4?t=1933).
134134

135135
Instead of chunking text with a **fixed** chunk size, the semantic splitter adaptively picks the breakpoint in-between sentences using embedding similarity. This ensures that a "chunk" contains sentences that are semantically related to each other.
136136

docs/docs/understanding/loading/loading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ documents = SimpleDirectoryReader("./data").load_data()
2828

2929
Because there are so many possible places to get data, they are not all built-in. Instead, you download them from our registry of data connectors, [LlamaHub](llamahub.md).
3030

31-
In this example LlamaIndex downloads and installs the connector called [DatabaseReader](https://llamahub.ai/l/database), which runs a query against a SQL database and returns every row of the results as a `Document`:
31+
In this example LlamaIndex downloads and installs the connector called [DatabaseReader](https://llamahub.ai/l/readers/llama-index-readers-database), which runs a query against a SQL database and returns every row of the results as a `Document`:
3232

3333
```python
3434
from llama_index.core import download_loader

docs/docs/understanding/using_llms/using_llms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ See the [custom LLM's How-To](../../module_guides/models/llms/usage_custom.md) f
6565

6666
## Prompts
6767

68-
By default LlamaIndex comes with a great set of built-in, battle-tested prompts that handle the tricky work of getting a specific LLM to correctly handle and format data. This is one of the biggest benefits of using LlamaIndex. If you want to, you can [customize the prompts](../../module_guides/models/prompts/index.md)
68+
By default LlamaIndex comes with a great set of built-in, battle-tested prompts that handle the tricky work of getting a specific LLM to correctly handle and format data. This is one of the biggest benefits of using LlamaIndex. If you want to, you can [customize the prompts](../../module_guides/models/prompts/index.md).

0 commit comments

Comments
 (0)