Skip to content

Commit 7540b8e

Browse files
committed
updated the 404 links in tut 27, 35 and 40
1 parent 630b6ac commit 7540b8e

3 files changed

Lines changed: 4 additions & 28 deletions

File tree

tutorials/27_First_RAG_Pipeline.ipynb

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,6 @@
2828
"For this tutorial, you'll use the Wikipedia pages of [Seven Wonders of the Ancient World](https://en.wikipedia.org/wiki/Wonders_of_the_World) as Documents, but you can replace them with any text you want.\n"
2929
]
3030
},
31-
{
32-
"cell_type": "markdown",
33-
"metadata": {
34-
"id": "QXjVlbPiO-qZ"
35-
},
36-
"source": [
37-
"## Preparing the Colab Environment\n",
38-
"\n",
39-
"- [Enable GPU Runtime in Colab](https://docs.haystack.deepset.ai/docs/enabling-gpu-acceleration)\n",
40-
"- [Set logging level to INFO](https://docs.haystack.deepset.ai/docs/logging)"
41-
]
42-
},
4331
{
4432
"cell_type": "markdown",
4533
"metadata": {
@@ -361,7 +349,7 @@
361349
"### Initialize a ChatGenerator\n",
362350
"\n",
363351
"\n",
364-
"ChatGenerators are the components that interact with large language models (LLMs). Now, set `OPENAI_API_KEY` environment variable and initialize a [OpenAIChatGenerator](https://docs.haystack.deepset.ai/docs/OpenAIChatGenerator) that can communicate with OpenAI GPT models. As you initialize, provide a model name:"
352+
"ChatGenerators are the components that interact with large language models (LLMs). Now, set `OPENAI_API_KEY` environment variable and initialize a [OpenAIChatGenerator](https://docs.haystack.deepset.ai/docs/openaichatgenerator) that can communicate with OpenAI GPT models. As you initialize, provide a model name:"
365353
]
366354
},
367355
{
@@ -626,4 +614,4 @@
626614
},
627615
"nbformat": 4,
628616
"nbformat_minor": 0
629-
}
617+
}

tutorials/35_Evaluating_RAG_Pipelines.ipynb

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,6 @@
5252
"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5PrzXaZ0-qk?si=lgBSfHatbV2i59J-\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n"
5353
]
5454
},
55-
{
56-
"cell_type": "markdown",
57-
"metadata": {
58-
"id": "QXjVlbPiO-qZ"
59-
},
60-
"source": [
61-
"## Preparing the Colab Environment\n",
62-
"\n",
63-
"- [Enable GPU Runtime in Colab](https://docs.haystack.deepset.ai/docs/enabling-gpu-acceleration)\n",
64-
"- [Set logging level to INFO](https://docs.haystack.deepset.ai/docs/setting-the-log-level)"
65-
]
66-
},
6755
{
6856
"cell_type": "markdown",
6957
"metadata": {
@@ -383,7 +371,7 @@
383371
"\n",
384372
"In this example, we'll be using:\n",
385373
"- [`InMemoryEmbeddingRetriever`](https://docs.haystack.deepset.ai/docs/inmemoryembeddingretriever) which will get the relevant documents to the query.\n",
386-
"- [`OpenAIChatGenerator`](https://docs.haystack.deepset.ai/docs/OpenAIChatGenerator) to generate answers to queries. You can replace `OpenAIChatGenerator` in your pipeline with another `ChatGenerator`. Check out the full list of generators [here](https://docs.haystack.deepset.ai/docs/generators)."
374+
"- [`OpenAIChatGenerator`](https://docs.haystack.deepset.ai/docs/openaichatgenerator) to generate answers to queries. You can replace `OpenAIChatGenerator` in your pipeline with another `ChatGenerator`. Check out the full list of generators [here](https://docs.haystack.deepset.ai/docs/generators)."
387375
]
388376
},
389377
{

tutorials/40_Building_Chat_Application_with_Function_Calling.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"\n",
2828
"📚 Useful Sources:\n",
2929
"* [OpenAIChatGenerator Docs](https://docs.haystack.deepset.ai/docs/openaichatgenerator)\n",
30-
"* [OpenAIChatGenerator API Reference](https://docs.haystack.deepset.ai/reference/generator-api#openaichatgenerator)\n",
30+
"* [OpenAIChatGenerator API Reference](https://docs.haystack.deepset.ai/reference/generators-api#openaichatgenerator)\n",
3131
"* [🧑‍🍳 Cookbook: Function Calling with OpenAIChatGenerator](https://github.com/deepset-ai/haystack-cookbook/blob/main/notebooks/function_calling_with_OpenAIChatGenerator.ipynb)\n",
3232
"\n",
3333
"[OpenAI's function calling](https://platform.openai.com/docs/guides/function-calling) connects large language models to external tools. By providing a `tools` list with functions and their specifications to the OpenAI API calls, you can easily build chat assistants that can answer questions by calling external APIs or extract structured information from text.\n",

0 commit comments

Comments
 (0)