From cb26c2dce95c1c5e7bad4d9ba29115088abfdbe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var?= Date: Mon, 22 Apr 2024 18:32:55 +0200 Subject: [PATCH] Fixed broken link in LLMs and RAG livebook (#370) --- notebooks/llms_rag.livemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/llms_rag.livemd b/notebooks/llms_rag.livemd index dfd925b4..b1e98003 100644 --- a/notebooks/llms_rag.livemd +++ b/notebooks/llms_rag.livemd @@ -26,7 +26,7 @@ The first step is to download the text document, in this case we use an essay wr ```elixir %{body: text} = Req.get!( - "https://raw.githubusercontent.com/run-llama/llama_index/main/docs/examples/data/paul_graham/paul_graham_essay.txt" + "https://raw.githubusercontent.com/run-llama/llama_index/main/docs/docs/examples/data/paul_graham/paul_graham_essay.txt" ) IO.puts("Document length: #{String.length(text)}")