Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorials/45_Creating_a_Multi_Agent_System.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@
"\n",
"Let's now build the other tool for the writer agent, this one will save content to an [InMemoryDocumentStore](https://docs.haystack.deepset.ai/docs/inmemorydocumentstore).\n",
"\n",
"To make this work, start by creating a pipeline that includes the custom `DocumentAdapter` compoenent along with the [DocumentWriter](https://docs.haystack.deepset.ai/docs/documentwriter). Once the pipeline is ready, wrap it in a `SuperComponent` and then convert it into a tool using `ComponentTool`.\n",
"To make this work, start by creating a pipeline that includes the custom `DocumentAdapter` component along with the [DocumentWriter](https://docs.haystack.deepset.ai/docs/documentwriter). Once the pipeline is ready, wrap it in a `SuperComponent` and then convert it into a tool using `ComponentTool`.\n",
"\n",
"> 💡 Tip: You could also [create a tool](https://docs.haystack.deepset.ai/docs/tool#tool-initialization) from a simple function that runs the pipeline. However, the recommended approach is to use `SuperComponent` together with `ComponentTool`, especially if you plan to deploy the tool with [Hayhooks](https://docs.haystack.deepset.ai/docs/hayhooks), since this method supports better serialization. Learn more about `SuperComponents` in [Tutorial: Creating Custom SuperComponents](https://haystack.deepset.ai/tutorials/44_creating_custom_supercomponents)"
]
Expand Down