You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@
8
8
LlamaIndex (GPT Index) is a data framework for your LLM application. Building with LlamaIndex typically involves working with LlamaIndex core and a chosen set of integrations (or plugins). There are two ways to start building with LlamaIndex in
9
9
Python:
10
10
11
-
1.**Starter**: `llama-index`(https://pypi.org/project/llama-index/). A starter Python package that includes core LlamaIndex as well as a selection of integrations.
11
+
1.**Starter**: [`llama-index`](https://pypi.org/project/llama-index/). A starter Python package that includes core LlamaIndex as well as a selection of integrations.
12
12
13
-
2.**Customized**: `llama-index-core`(https://pypi.org/project/llama-index-core/). Install core LlamaIndex and add your chosen LlamaIndex integration packages on [LlamaHub](https://llamahub.ai/)
13
+
2.**Customized**: [`llama-index-core`](https://pypi.org/project/llama-index-core/). Install core LlamaIndex and add your chosen LlamaIndex integration packages on [LlamaHub](https://llamahub.ai/)
14
14
that are required for your application. There are over 300 LlamaIndex integration
15
15
packages that work seamlessly with core, allowing you to build with your preferred
16
16
LLM, embedding, and vector store providers.
@@ -33,18 +33,18 @@ from llama_index.llms.openai import OpenAI
- LlamaHub (community library of data loaders): https://llamahub.ai.
47
-
- LlamaLab (cutting-edge AGI projects using LlamaIndex): https://github.com/run-llama/llama-lab.
46
+
- LlamaHub [(community library of data loaders)](https://llamahub.ai)
47
+
- LlamaLab [(cutting-edge AGI projects using LlamaIndex)](https://github.com/run-llama/llama-lab)
48
48
49
49
## 🚀 Overview
50
50
@@ -64,7 +64,7 @@ That's where **LlamaIndex** comes in. LlamaIndex is a "data framework" to help y
64
64
- Offers **data connectors** to ingest your existing data sources and data formats (APIs, PDFs, docs, SQL, etc.).
65
65
- Provides ways to **structure your data** (indices, graphs) so that this data can be easily used with LLMs.
66
66
- Provides an **advanced retrieval/query interface over your data**: Feed in any LLM input prompt, get back retrieved context and knowledge-augmented output.
67
-
- Allows easy integrations with your outer application framework (e.g. with LangChain, Flask, Docker, ChatGPT, anything else).
67
+
- Allows easy integrations with your outer application framework (e.g. with LangChain, Flask, Docker, ChatGPT, or anything else).
68
68
69
69
LlamaIndex provides tools for both beginner users and advanced users. Our high-level API allows beginner users to use LlamaIndex to ingest and query their data in
70
70
5 lines of code. Our lower-level APIs allow advanced users to customize and extend any module (data connectors, indices, retrievers, query engines, reranking modules),
@@ -77,7 +77,7 @@ integrations that build on the core are both accepted and highly encouraged! See
77
77
78
78
## 📄 Documentation
79
79
80
-
Full documentation can be found here: https://docs.llamaindex.ai/en/latest/.
80
+
Full documentation can be found [here](https://docs.llamaindex.ai/en/latest/)
81
81
82
82
Please check it out for the most up-to-date tutorials, how-to guides, references, and other resources!
0 commit comments