diff --git a/tutorials/45_Creating_a_Multi_Agent_System.ipynb b/tutorials/45_Creating_a_Multi_Agent_System.ipynb index fd3a85d..8e6e783 100644 --- a/tutorials/45_Creating_a_Multi_Agent_System.ipynb +++ b/tutorials/45_Creating_a_Multi_Agent_System.ipynb @@ -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)" ]