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 - + 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. - + [**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. - + #### 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)。 ## ðŸ—ºï¸ ç”Ÿæ…‹ç³»çµ±