From abaab0cacabe6816e6c88707482cdf6920bc55b2 Mon Sep 17 00:00:00 2001 From: Logan Markewich <logan.markewich@live.com> Date: Fri, 21 Jul 2023 11:19:44 -0600 Subject: [PATCH] patch links --- apps/docs/docs/introduction.md | 4 ++-- apps/docs/docs/modules/index.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/docs/docs/introduction.md b/apps/docs/docs/introduction.md index 74d1db5b4..e49977dfb 100644 --- a/apps/docs/docs/introduction.md +++ b/apps/docs/docs/introduction.md @@ -37,14 +37,14 @@ For more complex applications, our lower-level APIs allow advanced users to cust Our documentation includes [Installation Instructions](./installation.md) and a [Starter Tutorial](./starter.md) to build your first application. -Once you're up and running, [High-Level Concepts](./concepts.md) has an overview of LlamaIndex's modular architecture. For more hands-on practical examples, look through our [End-to-End Tutorials](LINK TO EXAMPLES FOLDER). +Once you're up and running, [High-Level Concepts](./concepts.md) has an overview of LlamaIndex's modular architecture. For more hands-on practical examples, look through our [End-to-End Tutorials](./end_to_end.md). ## ðŸ—ºï¸ Ecosystem To download or contribute, find LlamaIndex on: - Github: https://github.com/jerryjliu/llama_index -- LlamaIndex (NPM): LINK TO NPM PACKAGE +- LlamaIndex (NPM): https://www.npmjs.com/package/llamaindex - LlamaIndex (Python): https://pypi.org/project/llama-index/. ## Community diff --git a/apps/docs/docs/modules/index.md b/apps/docs/docs/modules/index.md index 9293c7e88..a5f91feb5 100644 --- a/apps/docs/docs/modules/index.md +++ b/apps/docs/docs/modules/index.md @@ -12,7 +12,7 @@ LlamaIndex.TS offers several core modules, seperated into high-level modules for - [**Indexes**](./high_level/data_index.md): indexes store the Nodes and the embeddings of those nodes. --[**QueryEngine**](./high_level/query_engine.md): Query engines are what generate the query you put in and give you back the result. Query engines generally combine a pre-built prompt with selected nodes from your Index to give the LLM the context it needs to answer your query. +- [**QueryEngine**](./high_level/query_engine.md): Query engines are what generate the query you put in and give you back the result. Query engines generally combine a pre-built prompt with selected nodes from your Index to give the LLM the context it needs to answer your query. - [**ChatEngine**](./high_level/chat_engine.md): A ChatEngine helps you build a chatbot that will interact with your Indexes. -- GitLab