Skip to content

Commit 33bc4ea

Browse files
authored
Merge pull request #249 from deepset-ai/multimodal-intro-docs-links
2 parents 04485b4 + 78a0350 commit 33bc4ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

notebooks/multimodal_intro.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"source": [
7676
"## Introduction to `ImageContent`\n",
7777
"\n",
78-
"[`ImageContent`](https://github.com/deepset-ai/haystack/blob/main/haystack/dataclasses/image_content.py) is a new dataclass that stores the image content of a user `ChatMessage`.\n",
78+
"[`ImageContent`](https://docs.haystack.deepset.ai/docs/chatmessage#types-of-content) is a new dataclass that stores the image content of a user `ChatMessage`.\n",
7979
"\n",
8080
"It has the following attributes:\n",
8181
"- `base64_image`: A base64 string representing the image.\n",
@@ -364,8 +364,8 @@
364364
"## Image Converters for `ImageContent`\n",
365365
"\n",
366366
"To perform image conversion in multimodal pipelines, we also introduced two image converters:\n",
367-
"- [`ImageFileToImageContent`](https://github.com/deepset-ai/haystack/blob/main/haystack/components/converters/image/file_to_image.py), which converts image files to `ImageContent` objects (similar to `from_file_path`).\n",
368-
"- [`PDFToImageContent`](https://github.com/deepset-ai/haystack/blob/main/haystack/components/converters/image/pdf_to_image.py), which converts PDF files to `ImageContent` objects."
367+
"- [`ImageFileToImageContent`](https://docs.haystack.deepset.ai/docs/imagefiletoimagecontent), which converts image files to `ImageContent` objects (similar to `from_file_path`).\n",
368+
"- [`PDFToImageContent`](https://docs.haystack.deepset.ai/docs/pdftoimagecontent), which converts PDF files to `ImageContent` objects."
369369
]
370370
},
371371
{
@@ -552,7 +552,7 @@
552552
"\n",
553553
"As we explored multimodal use cases, it became clear that the existing `ChatPromptBuilder` had some limitations. Specifically, we need a way to pass structured objects like `ImageContent` when building `ChatMessage`, and to handle a variable number of such objects.\n",
554554
"\n",
555-
"To address this, we are introducing experimental support for string templates in the `ChatPromptBuilder`. The syntax is pretty simple, as you can see below."
555+
"To address this, we are introducing [support for string templates in the `ChatPromptBuilder`](https://docs.haystack.deepset.ai/docs/chatpromptbuilder#string-templates). The syntax is pretty simple, as you can see below."
556556
]
557557
},
558558
{

0 commit comments

Comments
 (0)