From 712a774c1a477cf5b428f24afc1dc9a07f09c1bf Mon Sep 17 00:00:00 2001 From: Peter Evers Date: Mon, 1 Dec 2025 16:39:42 +0100 Subject: [PATCH 1/2] chore: fix broken links to llama_index --- public/llms-full.txt | 4 ++-- .../code_generation/codestral_integrations_tab/_page.mdx | 2 +- .../(docs)/capabilities/embeddings/rag_quickstart/page.mdx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/public/llms-full.txt b/public/llms-full.txt index bdea7ee1..628a11f6 100644 --- a/public/llms-full.txt +++ b/public/llms-full.txt @@ -6953,7 +6953,7 @@ messages = [ ] MistralAI(api_key=api_key, model=mistral_model).chat(messages) ``` -Check out more details on using Instruct and Fill In Middle(FIM) with LlamaIndex in this [notebook](https://github.com/run-llama/llama_index/blob/main/docs/docs/examples/cookbooks/codestral.ipynb). +Check out more details on using Instruct and Fill In Middle(FIM) with LlamaIndex in this [notebook](https://github.com/run-llama/llama_index/blob/main/docs/examples/cookbooks/codestral.ipynb). @@ -16560,7 +16560,7 @@ client = Mistral(api_key=api_key) In this very simple example, we are getting data from an essay written by Paul Graham: ```python -response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/main/docs/docs/examples/data/paul_graham/paul_graham_essay.txt') +response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/refs/heads/main/docs/examples/data/paul_graham/paul_graham_essay.txt') text = response.text ``` diff --git a/src/app/(docs)/capabilities/code_generation/codestral_integrations_tab/_page.mdx b/src/app/(docs)/capabilities/code_generation/codestral_integrations_tab/_page.mdx index 7445e3c1..6537e5f9 100644 --- a/src/app/(docs)/capabilities/code_generation/codestral_integrations_tab/_page.mdx +++ b/src/app/(docs)/capabilities/code_generation/codestral_integrations_tab/_page.mdx @@ -118,7 +118,7 @@ messages = [ ] MistralAI(api_key=api_key, model=mistral_model).chat(messages) ``` -Check out more details on using Instruct and Fill In Middle(FIM) with LlamaIndex in this [notebook](https://github.com/run-llama/llama_index/blob/main/docs/docs/examples/cookbooks/codestral.ipynb). +Check out more details on using Instruct and Fill In Middle(FIM) with LlamaIndex in this [notebook](https://github.com/run-llama/llama_index/blob/main/docs/examples/cookbooks/codestral.ipynb). diff --git a/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx b/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx index f85439a2..d83530e6 100644 --- a/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx +++ b/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx @@ -56,7 +56,7 @@ In this very simple example, we are getting data from an essay written by Paul G ```python -response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/main/docs/docs/examples/data/paul_graham/paul_graham_essay.txt') +response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/refs/heads/main/docs/examples/data/paul_graham/paul_graham_essay.txt') text = response.text ``` From 549a286c7ec5f7650c35d6674ff65941e9ea3b77 Mon Sep 17 00:00:00 2001 From: Peter Evers Date: Mon, 1 Dec 2025 16:40:59 +0100 Subject: [PATCH 2/2] fix to default links --- public/llms-full.txt | 2 +- src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/llms-full.txt b/public/llms-full.txt index 628a11f6..183163b0 100644 --- a/public/llms-full.txt +++ b/public/llms-full.txt @@ -16560,7 +16560,7 @@ client = Mistral(api_key=api_key) In this very simple example, we are getting data from an essay written by Paul Graham: ```python -response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/refs/heads/main/docs/examples/data/paul_graham/paul_graham_essay.txt') +response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/main/docs/examples/data/paul_graham/paul_graham_essay.txt') text = response.text ``` diff --git a/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx b/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx index d83530e6..8700c0d4 100644 --- a/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx +++ b/src/app/(docs)/capabilities/embeddings/rag_quickstart/page.mdx @@ -56,7 +56,7 @@ In this very simple example, we are getting data from an essay written by Paul G ```python -response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/refs/heads/main/docs/examples/data/paul_graham/paul_graham_essay.txt') +response = requests.get('https://raw.githubusercontent.com/run-llama/llama_index/main/docs/examples/data/paul_graham/paul_graham_essay.txt') text = response.text ```