diff --git a/apps/docs/docs/end_to_end.md b/apps/docs/docs/end_to_end.md
deleted file mode 100644
index 84613ea4a69665a1a58509ecbbffb7b6c4b7bf72..0000000000000000000000000000000000000000
--- a/apps/docs/docs/end_to_end.md
+++ /dev/null
@@ -1,49 +0,0 @@
----
-sidebar_position: 4
----
-
-# End to End Examples
-
-We include several end-to-end examples using LlamaIndex.TS in the repository
-
-Check out the examples below or try them out and complete them in minutes with interactive Github Codespace tutorials provided by Dev-Docs [here](https://codespaces.new/team-dev-docs/lits-dev-docs-playground?devcontainer_path=.devcontainer%2Fjavascript_ltsquickstart%2Fdevcontainer.json):
-
-## [Chat Engine](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/chatEngine.ts)
-
-Read a file and chat about it with the LLM.
-
-## [Vector Index](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/vectorIndex.ts)
-
-Create a vector index and query it. The vector index will use embeddings to fetch the top k most relevant nodes. By default, the top k is 2.
-
-## [Summary Index](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/summaryIndex.ts)
-
-Create a list index and query it. This example also use the `LLMRetriever`, which will use the LLM to select the best nodes to use when generating answer.
-
-## [Save / Load an Index](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/storageContext.ts)
-
-Create and load a vector index. Persistance to disk in LlamaIndex.TS happens automatically once a storage context object is created.
-
-## [Customized Vector Index](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/vectorIndexCustomize.ts)
-
-Create a vector index and query it, while also configuring the `LLM`, the `ServiceContext`, and the `similarity_top_k`.
-
-## [OpenAI LLM](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/openai.ts)
-
-Create an OpenAI LLM and directly use it for chat.
-
-## [Llama2 DeuceLLM](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/llamadeuce.ts)
-
-Create a Llama-2 LLM and directly use it for chat.
-
-## [SubQuestionQueryEngine](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/subquestion.ts)
-
-Uses the `SubQuestionQueryEngine`, which breaks complex queries into multiple questions, and then aggreates a response across the answers to all sub-questions.
-
-## [Low Level Modules](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/lowlevel.ts)
-
-This example uses several low-level components, which removes the need for an actual query engine. These components can be used anywhere, in any application, or customized and sub-classed to meet your own needs.
-
-## [JSON Entity Extraction](https://github.com/run-llama/LlamaIndexTS/blob/main/examples/jsonExtract.ts)
-
-Features OpenAI's chat API (using [`json_mode`](https://platform.openai.com/docs/guides/text-generation/json-mode)) to extract a JSON object from a sales call transcript.
diff --git a/apps/docs/docs/examples/_category_.yml b/apps/docs/docs/examples/_category_.yml
new file mode 100644
index 0000000000000000000000000000000000000000..de18c18bdaf00a1e72f6e05f402b69216827d424
--- /dev/null
+++ b/apps/docs/docs/examples/_category_.yml
@@ -0,0 +1,2 @@
+label: Examples
+position: 2
diff --git a/apps/docs/docs/examples/chat_engine.mdx b/apps/docs/docs/examples/chat_engine.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..3530186371142de977fb03decf139c184f2fb179
--- /dev/null
+++ b/apps/docs/docs/examples/chat_engine.mdx
@@ -0,0 +1,12 @@
+---
+sidebar_position: 1
+---
+
+import CodeBlock from "@theme/CodeBlock";
+import CodeSource from "!raw-loader!../../../../examples/chatEngine";
+
+# Chat Engine
+
+Chat Engine is a class that allows you to create a chatbot from a retriever. It is a wrapper around a retriever that allows you to chat with it in a conversational manner.
+
+<CodeBlock language="ts">{CodeSource}</CodeBlock>
diff --git a/apps/docs/docs/examples/more_examples.mdx b/apps/docs/docs/examples/more_examples.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..436a36700f9abb5b62cd65d131fd1a2aa462df9c
--- /dev/null
+++ b/apps/docs/docs/examples/more_examples.mdx
@@ -0,0 +1,7 @@
+---
+sidebar_position: 5
+---
+
+# More examples
+
+You can check out more examples in the [examples](https://github.com/run-llama/LlamaIndexTS/tree/main/examples) folder of the repository.
diff --git a/apps/docs/docs/examples/save_load_index.mdx b/apps/docs/docs/examples/save_load_index.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..ce928a8d17c590adb6d99733fe2e2bc45195478d
--- /dev/null
+++ b/apps/docs/docs/examples/save_load_index.mdx
@@ -0,0 +1,10 @@
+---
+sidebar_position: 4
+---
+
+import CodeBlock from "@theme/CodeBlock";
+import CodeSource from "!raw-loader!../../../../examples/storageContext";
+
+# Save/Load an Index
+
+<CodeBlock language="ts">{CodeSource}</CodeBlock>
diff --git a/apps/docs/docs/examples/summary_index.mdx b/apps/docs/docs/examples/summary_index.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..2096256508c3e9e31154a80067dad5827413fc19
--- /dev/null
+++ b/apps/docs/docs/examples/summary_index.mdx
@@ -0,0 +1,10 @@
+---
+sidebar_position: 3
+---
+
+import CodeBlock from "@theme/CodeBlock";
+import CodeSource from "!raw-loader!../../../../examples/summaryIndex";
+
+# Summary Index
+
+<CodeBlock language="ts">{CodeSource}</CodeBlock>
diff --git a/apps/docs/docs/examples/vector_index.mdx b/apps/docs/docs/examples/vector_index.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..c564ebb65f15a19aacb1d276d61e58ae1e0dbc18
--- /dev/null
+++ b/apps/docs/docs/examples/vector_index.mdx
@@ -0,0 +1,10 @@
+---
+sidebar_position: 2
+---
+
+import CodeBlock from "@theme/CodeBlock";
+import CodeSource from "!raw-loader!../../../../examples/vectorIndex";
+
+# Vector Index
+
+<CodeBlock language="ts">{CodeSource}</CodeBlock>
diff --git a/apps/docs/docs/getting_started/_category_.yml b/apps/docs/docs/getting_started/_category_.yml
new file mode 100644
index 0000000000000000000000000000000000000000..80ab05bcb8c6af9eb774a0bad7866932d6ba5acc
--- /dev/null
+++ b/apps/docs/docs/getting_started/_category_.yml
@@ -0,0 +1,2 @@
+label: Getting Started
+position: 1
diff --git a/apps/docs/docs/concepts.md b/apps/docs/docs/getting_started/concepts.md
similarity index 96%
rename from apps/docs/docs/concepts.md
rename to apps/docs/docs/getting_started/concepts.md
index 44996269bb493463175c636b7c8fab7788a5d47e..c5016d51319138dc651cdc6a8354ebd2eeee8db5 100644
--- a/apps/docs/docs/concepts.md
+++ b/apps/docs/docs/getting_started/concepts.md
@@ -2,7 +2,7 @@
 sidebar_position: 3
 ---
 
-# High-Level Concepts
+# Concepts
 
 LlamaIndex.TS helps you build LLM-powered applications (e.g. Q&A, chatbot) over custom data.
 
@@ -18,7 +18,7 @@ LlamaIndex uses a two stage method when using an LLM with your data:
 1. **indexing stage**: preparing a knowledge base, and
 2. **querying stage**: retrieving relevant context from the knowledge to assist the LLM in responding to a question
 
-![](./_static/concepts/rag.jpg)
+![](../_static/concepts/rag.jpg)
 
 This process is also known as Retrieval Augmented Generation (RAG).
 
@@ -30,7 +30,7 @@ Let's explore each stage in detail.
 
 LlamaIndex.TS help you prepare the knowledge base with a suite of data connectors and indexes.
 
-![](./_static/concepts/indexing.jpg)
+![](../_static/concepts/indexing.jpg)
 
 [**Data Loaders**](./modules/high_level/data_loader.md):
 A data connector (i.e. `Reader`) ingest data from different data sources and data formats into a simple `Document` representation (text and simple metadata).
@@ -56,7 +56,7 @@ LlamaIndex provides composable modules that help you build and integrate RAG pip
 
 These building blocks can be customized to reflect ranking preferences, as well as composed to reason over multiple knowledge bases in a structured way.
 
-![](./_static/concepts/querying.jpg)
+![](../_static/concepts/querying.jpg)
 
 #### Building Blocks
 
diff --git a/apps/docs/docs/environments.md b/apps/docs/docs/getting_started/environments.md
similarity index 93%
rename from apps/docs/docs/environments.md
rename to apps/docs/docs/getting_started/environments.md
index 0c063a4dbe49b1314bea91d7a5ac22f0115f0d6d..68709408e1d9f044486fa62536c27f5362833f6b 100644
--- a/apps/docs/docs/environments.md
+++ b/apps/docs/docs/getting_started/environments.md
@@ -1,5 +1,5 @@
 ---
-sidebar_position: 5
+sidebar_position: 2
 ---
 
 # Environments
diff --git a/apps/docs/docs/installation.mdx b/apps/docs/docs/getting_started/installation.mdx
similarity index 98%
rename from apps/docs/docs/installation.mdx
rename to apps/docs/docs/getting_started/installation.mdx
index 9dfa1085e87c17f349d05ff07eded4f533c45143..6975b5392072df7c9814aa7453a01f09bfae9980 100644
--- a/apps/docs/docs/installation.mdx
+++ b/apps/docs/docs/getting_started/installation.mdx
@@ -1,5 +1,5 @@
 ---
-sidebar_position: 1
+sidebar_position: 0
 ---
 
 # Installation and Setup
diff --git a/apps/docs/docs/starter.md b/apps/docs/docs/getting_started/starter.md
similarity index 98%
rename from apps/docs/docs/starter.md
rename to apps/docs/docs/getting_started/starter.md
index d450de3f1248fe8b3ffb24436deb3dc26bb9b61f..1aec62cbec2f388ecbe1344b7530b6af7a89504a 100644
--- a/apps/docs/docs/starter.md
+++ b/apps/docs/docs/getting_started/starter.md
@@ -1,5 +1,5 @@
 ---
-sidebar_position: 2
+sidebar_position: 1
 ---
 
 # Starter Tutorial
diff --git a/apps/docs/docs/introduction.md b/apps/docs/docs/introduction.md
index 2ec496a2041e1c6e79cf32a63062f099598af8f6..6a3630e58b57c0702d794330b2695daba5017b66 100644
--- a/apps/docs/docs/introduction.md
+++ b/apps/docs/docs/introduction.md
@@ -39,7 +39,7 @@ For more complex applications, our lower-level APIs allow advanced users to cust
 
 Our documentation includes [Installation Instructions](./installation.mdx) 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](./end_to_end.md).
+Once you're up and running, [High-Level Concepts](./getting_started/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
 
diff --git a/apps/docs/docs/modules/high_level/chat_engine.md b/apps/docs/docs/modules/chat_engine.md
similarity index 100%
rename from apps/docs/docs/modules/high_level/chat_engine.md
rename to apps/docs/docs/modules/chat_engine.md
diff --git a/apps/docs/docs/modules/high_level/data_index.md b/apps/docs/docs/modules/data_index.md
similarity index 100%
rename from apps/docs/docs/modules/high_level/data_index.md
rename to apps/docs/docs/modules/data_index.md
diff --git a/apps/docs/docs/modules/high_level/data_loader.md b/apps/docs/docs/modules/data_loader.md
similarity index 100%
rename from apps/docs/docs/modules/high_level/data_loader.md
rename to apps/docs/docs/modules/data_loader.md
diff --git a/apps/docs/docs/modules/high_level/documents_and_nodes.md b/apps/docs/docs/modules/documents_and_nodes.md
similarity index 100%
rename from apps/docs/docs/modules/high_level/documents_and_nodes.md
rename to apps/docs/docs/modules/documents_and_nodes.md
diff --git a/apps/docs/docs/modules/low_level/embedding.md b/apps/docs/docs/modules/embedding.md
similarity index 100%
rename from apps/docs/docs/modules/low_level/embedding.md
rename to apps/docs/docs/modules/embedding.md
diff --git a/apps/docs/docs/modules/high_level/_category_.yml b/apps/docs/docs/modules/high_level/_category_.yml
deleted file mode 100644
index 57933784bafc5c6ab729a5ee2716d1fe16a843ec..0000000000000000000000000000000000000000
--- a/apps/docs/docs/modules/high_level/_category_.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: High-Level Modules
diff --git a/apps/docs/docs/modules/low_level/llm.md b/apps/docs/docs/modules/llm.md
similarity index 100%
rename from apps/docs/docs/modules/low_level/llm.md
rename to apps/docs/docs/modules/llm.md
diff --git a/apps/docs/docs/modules/low_level/_category_.yml b/apps/docs/docs/modules/low_level/_category_.yml
deleted file mode 100644
index 263a37cba6e5593614475f5764ec6762e236d018..0000000000000000000000000000000000000000
--- a/apps/docs/docs/modules/low_level/_category_.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Low-Level Modules
diff --git a/apps/docs/docs/modules/low_level/node_parser.md b/apps/docs/docs/modules/node_parser.md
similarity index 100%
rename from apps/docs/docs/modules/low_level/node_parser.md
rename to apps/docs/docs/modules/node_parser.md
diff --git a/apps/docs/docs/modules/high_level/query_engine.md b/apps/docs/docs/modules/query_engine.md
similarity index 100%
rename from apps/docs/docs/modules/high_level/query_engine.md
rename to apps/docs/docs/modules/query_engine.md
diff --git a/apps/docs/docs/modules/low_level/response_synthesizer.md b/apps/docs/docs/modules/response_synthesizer.md
similarity index 100%
rename from apps/docs/docs/modules/low_level/response_synthesizer.md
rename to apps/docs/docs/modules/response_synthesizer.md
diff --git a/apps/docs/docs/modules/low_level/retriever.md b/apps/docs/docs/modules/retriever.md
similarity index 100%
rename from apps/docs/docs/modules/low_level/retriever.md
rename to apps/docs/docs/modules/retriever.md
diff --git a/apps/docs/docs/modules/low_level/storage.md b/apps/docs/docs/modules/storage.md
similarity index 100%
rename from apps/docs/docs/modules/low_level/storage.md
rename to apps/docs/docs/modules/storage.md
diff --git a/apps/docs/docs/modules/observability/_category_.yml b/apps/docs/docs/observability/_category_.yml
similarity index 63%
rename from apps/docs/docs/modules/observability/_category_.yml
rename to apps/docs/docs/observability/_category_.yml
index cebf0fd89801cadae909c773743d88300e317c98..59aad9b24225cf2cba3158b2109a3b010a9997c6 100644
--- a/apps/docs/docs/modules/observability/_category_.yml
+++ b/apps/docs/docs/observability/_category_.yml
@@ -1 +1,2 @@
 label: Observability
+position: 5
diff --git a/apps/docs/docs/modules/observability/index.md b/apps/docs/docs/observability/index.md
similarity index 100%
rename from apps/docs/docs/modules/observability/index.md
rename to apps/docs/docs/observability/index.md
diff --git a/apps/docs/i18n/ar/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/ar/docusaurus-plugin-content-docs/current/introduction.md
index 93e1e631f4974933b61854c3d15cf9c9d35ab4a1..d814623790c5cbde2b99412fd03cd01dca95ee16 100644
--- a/apps/docs/i18n/ar/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/ar/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ LlamaIndex.TS هو إطار بيانات لتطبيقات LLM لاستيعاب 
 
 تتضمن وثائقنا [تعليمات التثبيت](./installation.mdx) و[دليل البداية](./starter.md) لبناء تطبيقك الأول.
 
-بمجرد أن تكون جاهزًا وتعمل ، يحتوي [مفاهيم عالية المستوى](./concepts.md) على نظرة عامة على الهندسة المعمارية المتعددة المستويات لـ LlamaIndex. لمزيد من الأمثلة العملية التفصيلية ، يمكنك الاطلاع على [دروس النهاية إلى النهاية](./end_to_end.md).
+بمجرد أن تكون جاهزًا وتعمل ، يحتوي [مفاهيم عالية المستوى](./getting_started/concepts.md) على نظرة عامة على الهندسة المعمارية المتعددة المستويات لـ LlamaIndex. لمزيد من الأمثلة العملية التفصيلية ، يمكنك الاطلاع على [دروس النهاية إلى النهاية](./end_to_end.md).
 
 ## 🗺️ النظام البيئي
 
diff --git a/apps/docs/i18n/bg/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/bg/docusaurus-plugin-content-docs/current/introduction.md
index 002706a9315300d1e00dfd3937dbc62752aab5c8..5a764692ea98a5614147a1f77f0eb85d098a66e1 100644
--- a/apps/docs/i18n/bg/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/bg/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ LlamaIndex.TS предоставя основен набор от инструм
 
 Документацията ни включва [Инструкции за инсталиране](./installation.mdx) и [Урок за начинаещи](./starter.md), за да построите първото си приложение.
 
-След като сте готови, [Високо ниво концепции](./concepts.md) представя общ преглед на модулната архитектура на LlamaIndex. За повече практически примери, разгледайте нашите [Уроци от начало до край](./end_to_end.md).
+След като сте готови, [Високо ниво концепции](./getting_started/concepts.md) представя общ преглед на модулната архитектура на LlamaIndex. За повече практически примери, разгледайте нашите [Уроци от начало до край](./end_to_end.md).
 
 ## 🗺️ Екосистема
 
diff --git a/apps/docs/i18n/cat/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/cat/docusaurus-plugin-content-docs/current/introduction.md
index 75c45c8b615109c707ceb645ccf4892a18fa0992..893ea6fd953dcefc16855583e088b127521be679 100644
--- a/apps/docs/i18n/cat/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/cat/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Per a aplicacions més complexes, les nostres API de nivell inferior permeten al
 
 La nostra documentació inclou [Instruccions d'Instal·lació](./installation.mdx) i un [Tutorial d'Inici](./starter.md) per a construir la vostra primera aplicació.
 
-Un cop tingueu tot a punt, [Conceptes de Nivell Alt](./concepts.md) ofereix una visió general de l'arquitectura modular de LlamaIndex. Per a més exemples pràctics, consulteu els nostres [Tutorials de Principi a Fi](./end_to_end.md).
+Un cop tingueu tot a punt, [Conceptes de Nivell Alt](./getting_started/concepts.md) ofereix una visió general de l'arquitectura modular de LlamaIndex. Per a més exemples pràctics, consulteu els nostres [Tutorials de Principi a Fi](./end_to_end.md).
 
 ## 🗺️ Ecosistema
 
diff --git a/apps/docs/i18n/cs/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/cs/docusaurus-plugin-content-docs/current/introduction.md
index fcfa2708112d3968194719f97927004c4fa2e504..16311457df205c20d4ba64c368d085afadbb8e13 100644
--- a/apps/docs/i18n/cs/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/cs/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Pro složitější aplikace naše API na nižší úrovni umožňuje pokročilý
 
 Naše dokumentace obsahuje [Návod k instalaci](./installation.mdx) a [Úvodní tutoriál](./starter.md) pro vytvoření vaší první aplikace.
 
-Jakmile jste připraveni, [Vysokoúrovňové koncepty](./concepts.md) poskytují přehled o modulární architektuře LlamaIndexu. Pro více praktických příkladů se podívejte na naše [Tutoriály od začátku do konce](./end_to_end.md).
+Jakmile jste připraveni, [Vysokoúrovňové koncepty](./getting_started/concepts.md) poskytují přehled o modulární architektuře LlamaIndexu. Pro více praktických příkladů se podívejte na naše [Tutoriály od začátku do konce](./end_to_end.md).
 
 ## 🗺️ Ekosystém
 
diff --git a/apps/docs/i18n/da/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/da/docusaurus-plugin-content-docs/current/introduction.md
index 43fb4298bad9a75efd9b82e1e57fc94b1ee4012b..0962077fb7c39dce44cd936e98ef329b93ea260c 100644
--- a/apps/docs/i18n/da/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/da/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Til mere komplekse applikationer giver vores API'er på lavere niveau avancerede
 
 Vores dokumentation inkluderer [Installationsinstruktioner](./installation.mdx) og en [Starter Tutorial](./starter.md) til at bygge din første applikation.
 
-Når du er i gang, giver [Højniveaukoncepter](./concepts.md) et overblik over LlamaIndex's modulære arkitektur. For flere praktiske eksempler, kan du kigge igennem vores [End-to-End Tutorials](./end_to_end.md).
+Når du er i gang, giver [Højniveaukoncepter](./getting_started/concepts.md) et overblik over LlamaIndex's modulære arkitektur. For flere praktiske eksempler, kan du kigge igennem vores [End-to-End Tutorials](./end_to_end.md).
 
 ## 🗺️ Økosystem
 
diff --git a/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/introduction.md
index 55323e95d65020a909ed077ec01db514b1cd2dc5..e1b69dd68625dd3685d8fad6d7d30bf7e392ccd6 100644
--- a/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/de/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Für komplexere Anwendungen ermöglichen unsere APIs auf niedrigerer Ebene fortg
 
 Unsere Dokumentation enthält [Installationsanweisungen](./installation.mdx) und ein [Einführungstutorial](./starter.md), um Ihre erste Anwendung zu erstellen.
 
-Sobald Sie bereit sind, bietet [High-Level-Konzepte](./concepts.md) einen Überblick über die modulare Architektur von LlamaIndex. Für praktische Beispiele schauen Sie sich unsere [End-to-End-Tutorials](./end_to_end.md) an.
+Sobald Sie bereit sind, bietet [High-Level-Konzepte](./getting_started/concepts.md) einen Überblick über die modulare Architektur von LlamaIndex. Für praktische Beispiele schauen Sie sich unsere [End-to-End-Tutorials](./end_to_end.md) an.
 
 ## 🗺️ Ökosystem
 
diff --git a/apps/docs/i18n/el/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/el/docusaurus-plugin-content-docs/current/introduction.md
index 62a97adc041e1f873b3ccc0f46e330addef67905..b6b9e5af979576425ef3cd5aaf44e187bb352195 100644
--- a/apps/docs/i18n/el/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/el/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ slug: /
 
 Η τεκμηρίωσή μας περιλαμβάνει [Οδηγίες Εγκατάστασης](./installation.mdx) και ένα [Εισαγωγικό Εκπαιδευτικό Πρόγραμμα](./starter.md) για να δημιουργήσετε την πρώτη σας εφαρμογή.
 
-Αφού ξεκινήσετε, οι [Υψηλού Επιπέδου Έννοιες](./concepts.md) παρέχουν μια επισκόπηση της μοντουλαρισμένης αρχιτεκτονικής του LlamaIndex. Για περισσότερα πρακτικά παραδείγματα, ρίξτε μια ματιά στα [Ολοκληρωμένα Εκπαιδευτικά Προγράμματα](./end_to_end.md).
+Αφού ξεκινήσετε, οι [Υψηλού Επιπέδου Έννοιες](./getting_started/concepts.md) παρέχουν μια επισκόπηση της μοντουλαρισμένης αρχιτεκτονικής του LlamaIndex. Για περισσότερα πρακτικά παραδείγματα, ρίξτε μια ματιά στα [Ολοκληρωμένα Εκπαιδευτικά Προγράμματα](./end_to_end.md).
 
 ## 🗺️ Οικοσύστημα
 
diff --git a/apps/docs/i18n/es/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/es/docusaurus-plugin-content-docs/current/introduction.md
index 1f9ed1bae429091995fc10795b72eae65c8a2a61..4569499b0f37fdcc6e388cc76d5e5e7e20201d91 100644
--- a/apps/docs/i18n/es/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/es/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Para aplicaciones más complejas, nuestras API de nivel inferior permiten a los
 
 Nuestra documentación incluye [Instrucciones de instalación](./installation.mdx) y un [Tutorial de inicio](./starter.md) para construir tu primera aplicación.
 
-Una vez que estés en funcionamiento, [Conceptos de alto nivel](./concepts.md) ofrece una visión general de la arquitectura modular de LlamaIndex. Para obtener ejemplos prácticos más detallados, consulta nuestros [Tutoriales de extremo a extremo](./end_to_end.md).
+Una vez que estés en funcionamiento, [Conceptos de alto nivel](./getting_started/concepts.md) ofrece una visión general de la arquitectura modular de LlamaIndex. Para obtener ejemplos prácticos más detallados, consulta nuestros [Tutoriales de extremo a extremo](./end_to_end.md).
 
 ## 🗺️ Ecosistema
 
diff --git a/apps/docs/i18n/et/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/et/docusaurus-plugin-content-docs/current/introduction.md
index f26c5752a93ea0364e7bab63ed23dcbd6c7f4816..9c24112b94022651c749f44303a9b2e9702ad2ca 100644
--- a/apps/docs/i18n/et/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/et/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Täpsemate rakenduste jaoks võimaldavad meie madalama taseme API-d edasijõudnu
 
 Meie dokumentatsioonis on [paigaldusjuhised](./installation.mdx) ja [algõpetus](./starter.md) oma esimese rakenduse loomiseks.
 
-Kui olete valmis ja töötate, siis [kõrgtasemel kontseptsioonid](./concepts.md) annavad ülevaate LlamaIndexi moodularhitektuurist. Praktiliste näidete jaoks vaadake läbi meie [otsast lõpuni õpetused](./end_to_end.md).
+Kui olete valmis ja töötate, siis [kõrgtasemel kontseptsioonid](./getting_started/concepts.md) annavad ülevaate LlamaIndexi moodularhitektuurist. Praktiliste näidete jaoks vaadake läbi meie [otsast lõpuni õpetused](./end_to_end.md).
 
 ## 🗺️ Ökosüsteem
 
diff --git a/apps/docs/i18n/fa/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/fa/docusaurus-plugin-content-docs/current/introduction.md
index 7066e29b64bafc3d48005460e8c562bc584f0a86..93752a2934cb863404460d34dce3452383a43375 100644
--- a/apps/docs/i18n/fa/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/fa/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ API سطح بالای ما به کاربران مبتدی امکان استفا
 
 مستندات ما شامل [دستورالعمل نصب](./installation.mdx) و [آموزش شروع کار](./starter.md) برای ساخت اولین برنامه شما است.
 
-با راه اندازی و اجرا شدن، [مفاهیم سطح بالا](./concepts.md) یک نمای کلی از معماری ماژولار لاماایندکس را ارائه می دهد. برای مثال های عملی بیشتر، به [آموزش های پایان به پایان](./end_to_end.md) مراجعه کنید.
+با راه اندازی و اجرا شدن، [مفاهیم سطح بالا](./getting_started/concepts.md) یک نمای کلی از معماری ماژولار لاماایندکس را ارائه می دهد. برای مثال های عملی بیشتر، به [آموزش های پایان به پایان](./end_to_end.md) مراجعه کنید.
 
 "
 
diff --git a/apps/docs/i18n/fi/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/fi/docusaurus-plugin-content-docs/current/introduction.md
index 878bf7449ed35f1bc943e8969c80904aded67d5a..456c7bf2820bc4ca328db07b9f0900ae97c9322b 100644
--- a/apps/docs/i18n/fi/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/fi/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ Monimutkaisempiin sovelluksiin tarjoamme matalamman tason API:t, jotka mahdollis
 
 Dokumentaatiostamme löydät [asennusohjeet](./installation.mdx) ja [aloitusopetusohjelman](./starter.md) ensimmäisen sovelluksesi rakentamiseen.
 
-Kun olet päässyt vauhtiin, [Korkean tason käsitteet](./concepts.md) antaa yleiskuvan LlamaIndexin modulaarisesta arkkitehtuurista. Lisää käytännön esimerkkejä löydät [Päästä päähän -opetusohjelmista](./end_to_end.md).
+Kun olet päässyt vauhtiin, [Korkean tason käsitteet](./getting_started/concepts.md) antaa yleiskuvan LlamaIndexin modulaarisesta arkkitehtuurista. Lisää käytännön esimerkkejä löydät [Päästä päähän -opetusohjelmista](./end_to_end.md).
 
 ## 🗺️ Ekosysteemi
 
diff --git a/apps/docs/i18n/he/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/he/docusaurus-plugin-content-docs/current/introduction.md
index 0ad7afde19fe7f1776dc717d5023c46e24ce0e5e..c434c92bc64cc4a7b1b7899ed07fbf2fc2ac5084 100644
--- a/apps/docs/i18n/he/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/he/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ API הרמה הגבוהה שלנו מאפשר למשתמשים מתחילים ל
 
 התיעוד שלנו כולל [הוראות התקנה](./installation.mdx) ו[מדריך התחלה](./starter.md) לבניית היישום הראשון שלך.
 
-כאשר אתה מוכן ורץ, [מושגים ברמה גבוהה](./concepts.md) מציג סקירה על ארכיטקטורה מודולרית של LlamaIndex. לדוגמאות פרקטיות יותר, עיין ב[מדריכים מתקדמים מתחילה ועד סוף](./end_to_end.md).
+כאשר אתה מוכן ורץ, [מושגים ברמה גבוהה](./getting_started/concepts.md) מציג סקירה על ארכיטקטורה מודולרית של LlamaIndex. לדוגמאות פרקטיות יותר, עיין ב[מדריכים מתקדמים מתחילה ועד סוף](./end_to_end.md).
 
 "
 
diff --git a/apps/docs/i18n/hi/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/hi/docusaurus-plugin-content-docs/current/introduction.md
index fc54b71e6575992612126f813a5b316ebfa4e130..13eb1e7461fd0cede546902376daef7752c54561 100644
--- a/apps/docs/i18n/hi/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/hi/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ LlamaIndex.TS जावास्क्रिप्ट और TypeScript के 
 
 हमारी दस्तावेज़ी में [स्थापना निर्देश](./installation.mdx) और [स्टार्टर ट्यूटोरियल](./starter.md) शामिल हैं, जिनका उपयोग करके आप अपना पहला एप्लिकेशन बना सकते हैं।
 
-एक बार जब आप शुरू हो जाएं, [उच्च स्तरीय अवधारणाएँ](./concepts.md) में LlamaIndex की मॉड्यूलर आर्किटेक्चर का अवलोकन है। अधिक हैंड्स-ऑन प्रैक्टिकल उदाहरणों के लिए, हमारे [एंड-टू-एंड ट्यूटोरियल](./end_to_end.md) को देखें।
+एक बार जब आप शुरू हो जाएं, [उच्च स्तरीय अवधारणाएँ](./getting_started/concepts.md) में LlamaIndex की मॉड्यूलर आर्किटेक्चर का अवलोकन है। अधिक हैंड्स-ऑन प्रैक्टिकल उदाहरणों के लिए, हमारे [एंड-टू-एंड ट्यूटोरियल](./end_to_end.md) को देखें।
 
 "
 
diff --git a/apps/docs/i18n/hr/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/hr/docusaurus-plugin-content-docs/current/introduction.md
index 3b214ff9a2a05e8de107da4ba3fb44ff4f65299f..d505ae1e17ee31bf78b167158f4461255cee7790 100644
--- a/apps/docs/i18n/hr/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/hr/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Za složenije aplikacije, naše API-je niže razine omogućuju naprednim korisni
 
 Naša dokumentacija uključuje [Upute za instalaciju](./installation.mdx) i [Uvodni vodič](./starter.md) za izgradnju vaše prve aplikacije.
 
-Kada ste spremni za rad, [Visokorazinski koncepti](./concepts.md) pružaju pregled modularne arhitekture LlamaIndex-a. Za praktične primjere, pogledajte naše [Vodiče od početka do kraja](./end_to_end.md).
+Kada ste spremni za rad, [Visokorazinski koncepti](./getting_started/concepts.md) pružaju pregled modularne arhitekture LlamaIndex-a. Za praktične primjere, pogledajte naše [Vodiče od početka do kraja](./end_to_end.md).
 
 ## 🗺️ Ekosustav
 
diff --git a/apps/docs/i18n/hu/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/hu/docusaurus-plugin-content-docs/current/introduction.md
index 2389e0f677a1192e121ee55a28727410acfe558a..33bd0f5c83301fd43524e08b0b3c0c2cceea71c3 100644
--- a/apps/docs/i18n/hu/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/hu/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ A komplexebb alkalmazásokhoz a mélyebb szintű API-k lehetővé teszik a halad
 
 A dokumentációnk tartalmazza a [Telepítési utasításokat](./installation.mdx) és egy [Kezdő útmutatót](./starter.md) az első alkalmazás létrehozásához.
 
-Miután elindultál, a [Magas szintű fogalmak](./concepts.md) áttekintést ad a LlamaIndex moduláris architektúrájáról. További gyakorlati példákért tekintsd meg az [End-to-End útmutatóinkat](./end_to_end.md).
+Miután elindultál, a [Magas szintű fogalmak](./getting_started/concepts.md) áttekintést ad a LlamaIndex moduláris architektúrájáról. További gyakorlati példákért tekintsd meg az [End-to-End útmutatóinkat](./end_to_end.md).
 
 ## 🗺️ Ökoszisztéma
 
diff --git a/apps/docs/i18n/in/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/in/docusaurus-plugin-content-docs/current/introduction.md
index e8e494b43ec6ad8c81a3d886ccf483b26dcd412d..ea177484dff38da8a3fdd956a0eb046c70981333 100644
--- a/apps/docs/i18n/in/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/in/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Untuk aplikasi yang lebih kompleks, API tingkat lebih rendah kami memungkinkan p
 
 Dokumentasi kami mencakup [Instruksi Instalasi](./installation.mdx) dan [Tutorial Awal](./starter.md) untuk membangun aplikasi pertama Anda.
 
-Setelah Anda mulai, [Konsep Tingkat Tinggi](./concepts.md) memberikan gambaran tentang arsitektur modular LlamaIndex. Untuk contoh praktis yang lebih mendalam, lihat [Tutorial End-to-End](./end_to_end.md).
+Setelah Anda mulai, [Konsep Tingkat Tinggi](./getting_started/concepts.md) memberikan gambaran tentang arsitektur modular LlamaIndex. Untuk contoh praktis yang lebih mendalam, lihat [Tutorial End-to-End](./end_to_end.md).
 
 ## 🗺️ Ekosistem
 
diff --git a/apps/docs/i18n/it/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/it/docusaurus-plugin-content-docs/current/introduction.md
index 9698040aecff7f33aeb6a9e12b454cdbc7d6a664..70dbad045e6d16cf4cd06c767c3b90f8ee047d25 100644
--- a/apps/docs/i18n/it/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/it/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Per applicazioni più complesse, le nostre API di livello inferiore consentono a
 
 La nostra documentazione include le [Istruzioni di installazione](./installation.mdx) e un [Tutorial introduttivo](./starter.md) per creare la tua prima applicazione.
 
-Una volta che sei pronto, i [Concetti di alto livello](./concepts.md) offrono una panoramica dell'architettura modulare di LlamaIndex. Per ulteriori esempi pratici, consulta i nostri [Tutorial end-to-end](./end_to_end.md).
+Una volta che sei pronto, i [Concetti di alto livello](./getting_started/concepts.md) offrono una panoramica dell'architettura modulare di LlamaIndex. Per ulteriori esempi pratici, consulta i nostri [Tutorial end-to-end](./end_to_end.md).
 
 ## 🗺️ Ecosistema
 
diff --git a/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/introduction.md
index d954f6f5e7801c80c969e50c7edb48d34cc0979a..ef7af52aa25184a91ce5f8289273d515aa023f14 100644
--- a/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/ja/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ LlamaIndex.TSは、JavaScriptとTypeScriptを使用してLLMアプリを構築
 
 私たちのドキュメントには、[インストール手順](./installation.mdx)と[スターターチュートリアル](./starter.md)が含まれており、最初のアプリケーションの構築をサポートします。
 
-一度準備ができたら、[ハイレベルなコンセプト](./concepts.md)では、LlamaIndexのモジュラーアーキテクチャの概要を説明しています。より実践的な例については、[エンドツーエンドのチュートリアル](./end_to_end.md)を参照してください。
+一度準備ができたら、[ハイレベルなコンセプト](./getting_started/concepts.md)では、LlamaIndexのモジュラーアーキテクチャの概要を説明しています。より実践的な例については、[エンドツーエンドのチュートリアル](./end_to_end.md)を参照してください。
 
 ## 🗺️ エコシステム
 
diff --git a/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/introduction.md
index 9ba8b60ea1223d0974dab65c2e9f33592d6fdcb9..2daafe5fcaa36fb623fc63b4ae8454b20f9afac5 100644
--- a/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/ko/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ LlamaIndex.TS는 JavaScript와 TypeScript로 LLM 앱을 개발하는 모든 사
 
 저희 문서에는 [설치 지침](./installation.mdx)과 [스타터 튜토리얼](./starter.md)이 포함되어 있어 첫 번째 애플리케이션을 빌드할 수 있습니다.
 
-한 번 시작하면, [고수준 개념](./concepts.md)에서 LlamaIndex의 모듈식 아키텍처에 대한 개요를 확인할 수 있습니다. 더 많은 실전 예제를 원하신다면, [End-to-End 튜토리얼](./end_to_end.md)을 참조해주세요.
+한 번 시작하면, [고수준 개념](./getting_started/concepts.md)에서 LlamaIndex의 모듈식 아키텍처에 대한 개요를 확인할 수 있습니다. 더 많은 실전 예제를 원하신다면, [End-to-End 튜토리얼](./end_to_end.md)을 참조해주세요.
 
 "
 
diff --git a/apps/docs/i18n/lt/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/lt/docusaurus-plugin-content-docs/current/introduction.md
index 400c67d124f064053927785b9e62836fc414c30a..21f24db68df2f300f4f1a50350a815e893133177 100644
--- a/apps/docs/i18n/lt/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/lt/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Sudėtingesnėms programoms mūsų žemesnio lygio API leidžia pažengusiems na
 
 Mūsų dokumentacija apima [įdiegimo instrukcijas](./installation.mdx) ir [pradžios vadovą](./starter.md), skirtą sukurti pirmąją aplikaciją.
 
-Kai jau esate paleidę, [aukšto lygio konceptai](./concepts.md) pateikia apžvalgą apie LlamaIndex modularią architektūrą. Norėdami gauti daugiau praktinių pavyzdžių, peržiūrėkite mūsų [nuo pradžių iki pabaigos vadovus](./end_to_end.md).
+Kai jau esate paleidę, [aukšto lygio konceptai](./getting_started/concepts.md) pateikia apžvalgą apie LlamaIndex modularią architektūrą. Norėdami gauti daugiau praktinių pavyzdžių, peržiūrėkite mūsų [nuo pradžių iki pabaigos vadovus](./end_to_end.md).
 
 ## 🗺️ Ekosistema
 
diff --git a/apps/docs/i18n/lv/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/lv/docusaurus-plugin-content-docs/current/introduction.md
index 7c2123dba4c22175d914fdbc28e9be89dc8f6adb..82d0a81e2afe5ff5968bf9ba213fdd1e3006fc30 100644
--- a/apps/docs/i18n/lv/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/lv/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ Lielākām un sarežģītākām lietojumprogrammām mūsu zemāka līmeņa API 
 
 Mūsu dokumentācijā ir iekļautas [Instalācijas instrukcijas](./installation.mdx) un [Sākuma pamācība](./starter.md), lai izveidotu savu pirmo lietojumprogrammu.
 
-Kad esat gatavs, [Augsta līmeņa koncepti](./concepts.md) sniedz pārskatu par LlamaIndex modulāro arhitektūru. Lai iegūtu vairāk praktisku piemēru, apskatiet mūsu [Galēji līdz galam pamācības](./end_to_end.md).
+Kad esat gatavs, [Augsta līmeņa koncepti](./getting_started/concepts.md) sniedz pārskatu par LlamaIndex modulāro arhitektūru. Lai iegūtu vairāk praktisku piemēru, apskatiet mūsu [Galēji līdz galam pamācības](./end_to_end.md).
 
 ## 🗺️ Ekosistēma
 
diff --git a/apps/docs/i18n/nl/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/nl/docusaurus-plugin-content-docs/current/introduction.md
index 1820ec9c7d5ff9dcc691d270d02654111c17888b..29cf3c58255a05918a55ec7f806c52ed33697637 100644
--- a/apps/docs/i18n/nl/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/nl/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Voor complexere toepassingen stellen onze API's op lager niveau gevorderde gebru
 
 Onze documentatie bevat [Installatie-instructies](./installation.mdx) en een [Starterzelfstudie](./starter.md) om uw eerste toepassing te bouwen.
 
-Zodra u aan de slag bent, geeft [Hoog-niveau Concepten](./concepts.md) een overzicht van de modulaire architectuur van LlamaIndex. Voor meer praktische voorbeelden kunt u onze [End-to-End Tutorials](./end_to_end.md) bekijken.
+Zodra u aan de slag bent, geeft [Hoog-niveau Concepten](./getting_started/concepts.md) een overzicht van de modulaire architectuur van LlamaIndex. Voor meer praktische voorbeelden kunt u onze [End-to-End Tutorials](./end_to_end.md) bekijken.
 
 ## 🗺️ Ecosysteem
 
diff --git a/apps/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction.md
index 49851b92a967077c920afe92a8db9636beb55baa..2254e20aec9419292fa264bcc74bef300c79b38a 100644
--- a/apps/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ For mer komplekse applikasjoner lar våre lavnivå-APIer avanserte brukere tilpa
 
 Dokumentasjonen vår inkluderer [Installasjonsinstruksjoner](./installation.mdx) og en [Starterveiledning](./starter.md) for å bygge din første applikasjon.
 
-Når du er oppe og kjører, gir [Høynivåkonsepter](./concepts.md) en oversikt over LlamaIndex sin modulære arkitektur. For mer praktiske eksempler, kan du se gjennom våre [End-to-End veiledninger](./end_to_end.md).
+Når du er oppe og kjører, gir [Høynivåkonsepter](./getting_started/concepts.md) en oversikt over LlamaIndex sin modulære arkitektur. For mer praktiske eksempler, kan du se gjennom våre [End-to-End veiledninger](./end_to_end.md).
 
 ## 🗺️ Økosystem
 
diff --git a/apps/docs/i18n/pl/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/pl/docusaurus-plugin-content-docs/current/introduction.md
index 69289b0faeed21fe004e6c12af9d5ea99a7cb423..cc8aab1837c8df9260de034c4a30ce8d0d99fe2c 100644
--- a/apps/docs/i18n/pl/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/pl/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Dla bardziej zaawansowanych aplikacji nasze API na niższym poziomie umożliwia
 
 Nasza dokumentacja zawiera [Instrukcje instalacji](./installation.mdx) oraz [Samouczek dla początkujących](./starter.md), który pomoże Ci zbudować swoją pierwszą aplikację.
 
-Gdy już będziesz gotowy, [Wysokopoziomowe koncepcje](./concepts.md) zawierają przegląd modułowej architektury LlamaIndex. Jeśli chcesz zobaczyć praktyczne przykłady, zapoznaj się z naszymi [Samouczkami od początku do końca](./end_to_end.md).
+Gdy już będziesz gotowy, [Wysokopoziomowe koncepcje](./getting_started/concepts.md) zawierają przegląd modułowej architektury LlamaIndex. Jeśli chcesz zobaczyć praktyczne przykłady, zapoznaj się z naszymi [Samouczkami od początku do końca](./end_to_end.md).
 
 ## 🗺️ Ekosystem
 
diff --git a/apps/docs/i18n/pt/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/pt/docusaurus-plugin-content-docs/current/introduction.md
index ff7e81be9644ef5542f440873d5a476685ce96bb..042152537bf5c841c3c5764055f1c23509f39c1c 100644
--- a/apps/docs/i18n/pt/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/pt/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Para aplicativos mais complexos, nossas APIs de nível inferior permitem que usu
 
 Nossa documentação inclui [Instruções de Instalação](./installation.mdx) e um [Tutorial Inicial](./starter.md) para construir seu primeiro aplicativo.
 
-Depois de estar pronto para começar, [Conceitos de Alto Nível](./concepts.md) oferece uma visão geral da arquitetura modular do LlamaIndex. Para exemplos práticos mais detalhados, consulte nossos [Tutoriais de Ponta a Ponta](./end_to_end.md).
+Depois de estar pronto para começar, [Conceitos de Alto Nível](./getting_started/concepts.md) oferece uma visão geral da arquitetura modular do LlamaIndex. Para exemplos práticos mais detalhados, consulte nossos [Tutoriais de Ponta a Ponta](./end_to_end.md).
 
 ## 🗺️ Ecossistema
 
diff --git a/apps/docs/i18n/ro/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/ro/docusaurus-plugin-content-docs/current/introduction.md
index d75c625c935ddfd9c8497bc4cea357af9e56d7cd..d13c9674e47c2cf4a015922cbce2a60a6eea368a 100644
--- a/apps/docs/i18n/ro/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/ro/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Pentru aplicații mai complexe, API-urile noastre de nivel inferior permit utili
 
 Documentația noastră include [Instrucțiuni de instalare](./installation.mdx) și un [Tutorial de pornire](./starter.md) pentru a construi prima ta aplicație.
 
-Odată ce ai început, [Concepte de nivel înalt](./concepts.md) oferă o prezentare generală a arhitecturii modulare a LlamaIndex. Pentru mai multe exemple practice, consultă [Tutorialele de la cap la coadă](./end_to_end.md).
+Odată ce ai început, [Concepte de nivel înalt](./getting_started/concepts.md) oferă o prezentare generală a arhitecturii modulare a LlamaIndex. Pentru mai multe exemple practice, consultă [Tutorialele de la cap la coadă](./end_to_end.md).
 
 ## 🗺️ Ecosistem
 
diff --git a/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/introduction.md
index fb35d8d37c2cc62e09dd0543bdb428e5d18c0668..6a946cdcbd0a3938a97022fdb9387480f037584c 100644
--- a/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/ru/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ LlamaIndex.TS предоставляет основной набор инстр
 
 Наша документация включает [Инструкции по установке](./installation.mdx) и [Стартовое руководство](./starter.md) для создания вашего первого приложения.
 
-Когда вы начнете работу, [Высокоуровневые концепции](./concepts.md) предоставляют обзор модульной архитектуры LlamaIndex. Для более практических примеров руководство [Полный цикл руководств](./end_to_end.md) будет полезно.
+Когда вы начнете работу, [Высокоуровневые концепции](./getting_started/concepts.md) предоставляют обзор модульной архитектуры LlamaIndex. Для более практических примеров руководство [Полный цикл руководств](./end_to_end.md) будет полезно.
 
 ## 🗺️ Экосистема
 
diff --git a/apps/docs/i18n/se/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/se/docusaurus-plugin-content-docs/current/introduction.md
index e62c961683ec43a44c49dfbe45a5e141625529db..8f4e0c0023e7624645904b016f8d1e6a77c46f15 100644
--- a/apps/docs/i18n/se/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/se/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Za složenije aplikacije, naše API-je na nižem nivou omogućavaju naprednim ko
 
 Naša dokumentacija uključuje [Uputstva za instalaciju](./installation.mdx) i [Uvodni tutorijal](./starter.md) za izgradnju vaše prve aplikacije.
 
-Kada ste spremni za rad, [Koncepti na visokom nivou](./concepts.md) pružaju pregled modularne arhitekture LlamaIndex-a. Za praktične primere, pogledajte naše [Vodiče od početka do kraja](./end_to_end.md).
+Kada ste spremni za rad, [Koncepti na visokom nivou](./getting_started/concepts.md) pružaju pregled modularne arhitekture LlamaIndex-a. Za praktične primere, pogledajte naše [Vodiče od početka do kraja](./end_to_end.md).
 
 ## 🗺️ Ekosistem
 
diff --git a/apps/docs/i18n/sk/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/sk/docusaurus-plugin-content-docs/current/introduction.md
index 3c2821a030848e1cb6e1d0f0b5e0fca84c7de23e..7c7734c0d75d5a324ec84c3d3c8f7bf0b56b10c3 100644
--- a/apps/docs/i18n/sk/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/sk/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Za bolj kompleksne aplikacije naša nizkonivojska API omogoča naprednim uporabn
 
 Naša dokumentacija vključuje [Navodila za namestitev](./installation.mdx) in [Vodič za začetek](./starter.md), ki vam pomagata zgraditi vašo prvo aplikacijo.
 
-Ko ste pripravljeni, [Visokonivojski koncepti](./concepts.md) ponujajo pregled modularne arhitekture LlamaIndex-a. Za več praktičnih primerov si oglejte naše [Vodiče od začetka do konca](./end_to_end.md).
+Ko ste pripravljeni, [Visokonivojski koncepti](./getting_started/concepts.md) ponujajo pregled modularne arhitekture LlamaIndex-a. Za več praktičnih primerov si oglejte naše [Vodiče od začetka do konca](./end_to_end.md).
 
 ## 🗺️ Ekosistem
 
diff --git a/apps/docs/i18n/sl/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/sl/docusaurus-plugin-content-docs/current/introduction.md
index 846d160c07d52c19d65f4ad013292bebc616bc7a..640b1b3c426b5c1f1972f59061c28855917141c7 100644
--- a/apps/docs/i18n/sl/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/sl/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ Pre zložitejšie aplikácie naša nižšia úroveň API umožňuje pokročilým
 
 Naša dokumentácia obsahuje [Inštalačné pokyny](./installation.mdx) a [Úvodný tutoriál](./starter.md) pre vytvorenie vašej prvej aplikácie.
 
-Keď už máte všetko pripravené, [Vysokoúrovňové koncepty](./concepts.md) poskytujú prehľad o modulárnej architektúre LlamaIndexu. Pre viac praktických príkladov si prečítajte naše [Tutoriály od začiatku do konca](./end_to_end.md).
+Keď už máte všetko pripravené, [Vysokoúrovňové koncepty](./getting_started/concepts.md) poskytujú prehľad o modulárnej architektúre LlamaIndexu. Pre viac praktických príkladov si prečítajte naše [Tutoriály od začiatku do konca](./end_to_end.md).
 
 ## 🗺️ Ekosystém
 
diff --git a/apps/docs/i18n/sv/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/sv/docusaurus-plugin-content-docs/current/introduction.md
index 7ae0a7c9f2b4ace240963415990d674cbc4aa3c2..c06da7b781bbd3562d034cd2cf422cd7f3c8c26e 100644
--- a/apps/docs/i18n/sv/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/sv/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ För mer komplexa applikationer tillåter våra lägre nivå-API:er avancerade a
 
 Vår dokumentation inkluderar [Installationsinstruktioner](./installation.mdx) och en [Starterhandledning](./starter.md) för att bygga din första applikation.
 
-När du är igång, ger [Högnivåkoncept](./concepts.md) en översikt över LlamaIndex modulära arkitektur. För mer praktiska exempel, titta igenom våra [Steg-för-steg handledningar](./end_to_end.md).
+När du är igång, ger [Högnivåkoncept](./getting_started/concepts.md) en översikt över LlamaIndex modulära arkitektur. För mer praktiska exempel, titta igenom våra [Steg-för-steg handledningar](./end_to_end.md).
 
 ## 🗺️ Ekosystem
 
diff --git a/apps/docs/i18n/th/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/th/docusaurus-plugin-content-docs/current/introduction.md
index e59bf2719c53618b28d07304ecb06ccaf84904da..833139054dc217afdd11bf7b7ca0a3464c5f6087 100644
--- a/apps/docs/i18n/th/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/th/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ API ระดับสูงของเราช่วยให้ผู้ใ
 
 เอกสารของเราประกอบด้วย[คำแนะนำการติดตั้ง](./installation.mdx)และ[บทแนะนำเบื้องต้น](./starter.md)เพื่อสร้างแอปพลิเคชันครั้งแรกของคุณ
 
-เมื่อคุณเริ่มใช้งานแล้ว [แนวคิดระดับสูง](./concepts.md) มีภาพรวมของสถาปัตยกรรมแบบโมดูลของ LlamaIndex สำหรับตัวอย่างที่เป็นปฏิบัติจริงมากขึ้น โปรดดูที่ [บทแนะนำจบสู่จบ](./end_to_end.md) เพื่อตัวอย่างที่ใช้งานได้จริง
+เมื่อคุณเริ่มใช้งานแล้ว [แนวคิดระดับสูง](./getting_started/concepts.md) มีภาพรวมของสถาปัตยกรรมแบบโมดูลของ LlamaIndex สำหรับตัวอย่างที่เป็นปฏิบัติจริงมากขึ้น โปรดดูที่ [บทแนะนำจบสู่จบ](./end_to_end.md) เพื่อตัวอย่างที่ใช้งานได้จริง
 
 "
 
diff --git a/apps/docs/i18n/tr/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/tr/docusaurus-plugin-content-docs/current/introduction.md
index 651ff196dc2babc6c93e3a8bf254314961188d6a..f502902fefee45b8490d4d0915f8d1ffcee99d16 100644
--- a/apps/docs/i18n/tr/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/tr/docusaurus-plugin-content-docs/current/introduction.md
@@ -43,7 +43,7 @@ Daha karmaşık uygulamalar için, düşük seviyeli API'larımız, gelişmiş k
 
 Dökümantasyonumuz, [Kurulum Talimatları](./installation.mdx) ve ilk uygulamanızı oluşturmanız için bir [Başlangıç Kılavuzu](./starter.md) içerir.
 
-Çalışmaya başladıktan sonra, [Yüksek Düzeyli Kavramlar](./concepts.md) LlamaIndex'in modüler mimarisinin bir genel bakışını sunar. Daha fazla pratik örnek için [Uçtan Uca Öğreticilerimize](./end_to_end.md) göz atabilirsiniz.
+Çalışmaya başladıktan sonra, [Yüksek Düzeyli Kavramlar](./getting_started/concepts.md) LlamaIndex'in modüler mimarisinin bir genel bakışını sunar. Daha fazla pratik örnek için [Uçtan Uca Öğreticilerimize](./end_to_end.md) göz atabilirsiniz.
 
 ## 🗺️ Ekosistem
 
diff --git a/apps/docs/i18n/uk/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/uk/docusaurus-plugin-content-docs/current/introduction.md
index 0854259dd8ed2a46e99a7c881c83ac93e6665bf7..bdfbde12b5d896593a419d0ff10ca2a59da3d92e 100644
--- a/apps/docs/i18n/uk/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/uk/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ LlamaIndex.TS надає основний набір інструментів, 
 
 Наша документація містить [Інструкції з встановлення](./installation.mdx) та [Посібник для початківців](./starter.md) для створення вашої першої програми.
 
-Після того, як ви розпочнете роботу, [Високорівневі концепції](./concepts.md) містить огляд модульної архітектури LlamaIndex. Для більш практичних прикладів роботи, перегляньте наші [Посібники з кінця в кінець](./end_to_end.md).
+Після того, як ви розпочнете роботу, [Високорівневі концепції](./getting_started/concepts.md) містить огляд модульної архітектури LlamaIndex. Для більш практичних прикладів роботи, перегляньте наші [Посібники з кінця в кінець](./end_to_end.md).
 
 ## 🗺️ Екосистема
 
diff --git a/apps/docs/i18n/vi/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/vi/docusaurus-plugin-content-docs/current/introduction.md
index 71a946238bb5eb98589c5f205bd42f23faa349ef..773fb3a9629ec121d512bde7fafc3f3307c80aeb 100644
--- a/apps/docs/i18n/vi/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/vi/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ API cấp cao của chúng tôi cho phép người dùng mới bắt đầu sử
 
 Tài liệu của chúng tôi bao gồm [Hướng dẫn cài đặt](./installation.mdx) và [Hướng dẫn bắt đầu](./starter.md) để xây dựng ứng dụng đầu tiên của bạn.
 
-Khi bạn đã sẵn sàng, [Khái niệm cấp cao](./concepts.md) cung cấp một cái nhìn tổng quan về kiến trúc mô-đun của LlamaIndex. Để có thêm ví dụ thực tế, hãy xem qua [Hướng dẫn từ đầu đến cuối](./end_to_end.md).
+Khi bạn đã sẵn sàng, [Khái niệm cấp cao](./getting_started/concepts.md) cung cấp một cái nhìn tổng quan về kiến trúc mô-đun của LlamaIndex. Để có thêm ví dụ thực tế, hãy xem qua [Hướng dẫn từ đầu đến cuối](./end_to_end.md).
 
 ## 🗺️ Hệ sinh thái
 
diff --git a/apps/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/introduction.md
index 9665ece5267ed8f318a386f2ec61a71437ccc563..4bd286dd2a3b3f01aee24ee85d9a234506094511 100644
--- a/apps/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/introduction.md
@@ -39,7 +39,7 @@ LlamaIndex.TS 提供了一套核心工具,对于任何使用JavaScript和TypeS
 
 我们的文档包括[安装说明](./installation.mdx)和一个[入门教程](./starter.md),帮助你构建第一个应用程序。
 
-一旦你开始运行,[高级概念](./concepts.md)有一个LlamaIndex模块化架构的概览。更多实践例子,请浏览我们的[端到端教程](./end_to_end.md)。
+一旦你开始运行,[高级概念](./getting_started/concepts.md)有一个LlamaIndex模块化架构的概览。更多实践例子,请浏览我们的[端到端教程](./end_to_end.md)。
 
 ## 🗺️ 生态系统
 
diff --git a/apps/docs/i18n/zh_tw/docusaurus-plugin-content-docs/current/introduction.md b/apps/docs/i18n/zh_tw/docusaurus-plugin-content-docs/current/introduction.md
index aaf4034cf27e79ddd6aadee339a4a12de3065e48..8c0dc190e827601a9743e0e6d46c34b840f55a48 100644
--- a/apps/docs/i18n/zh_tw/docusaurus-plugin-content-docs/current/introduction.md
+++ b/apps/docs/i18n/zh_tw/docusaurus-plugin-content-docs/current/introduction.md
@@ -41,7 +41,7 @@ LlamaIndex.TS 提供了一組核心工具,對於使用 JavaScript 和 TypeScri
 
 我們的文檔包括[安裝說明](./installation.mdx)和[入門教程](./starter.md),以構建您的第一個應用程序。
 
-一旦您開始運行,[高級概念](./concepts.md)提供了 LlamaIndex 模塊化架構的概述。如果需要更多實際的操作示例,請查看我們的[端到端教程](./end_to_end.md)。
+一旦您開始運行,[高級概念](./getting_started/concepts.md)提供了 LlamaIndex 模塊化架構的概述。如果需要更多實際的操作示例,請查看我們的[端到端教程](./end_to_end.md)。
 
 ## 🗺️ 生態系統