Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
HF_API_TOKEN: ${{ secrets.HF_API_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
SERPERDEV_API_KEY: ${{ secrets.SERPERDEV_API_KEY }}
NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }}

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run_tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
HF_API_TOKEN: ${{ secrets.HF_API_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
SERPERDEV_API_KEY: ${{ secrets.SERPERDEV_API_KEY }}
NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }}

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion index.toml
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,5 @@ notebook = "45_Creating_a_Multi_Agent_System.ipynb"
aliases = []
completion_time = "20 min"
created_at = 2025-06-02
dependencies = []
dependencies = ["duckduckgo-api-haystack", "docstring-parser"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we include docstring-parser to the pip install cell as well?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

docstring-parser is a default dependency in Haystack starting from 2.15 and it comes by default in colab. I added here for the tests, but we don't need to install it explicitly

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay sounds good!

featured = true
6 changes: 4 additions & 2 deletions tutorials/45_Creating_a_Multi_Agent_System.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@
}
],
"source": [
"!pip install -q haystack-ai duckduckgo-api-haystack"
"%%bash\n",
"\n",
"pip install -q haystack-ai duckduckgo-api-haystack"
]
},
{
Expand Down Expand Up @@ -123,7 +125,7 @@
"outputs": [],
"source": [
"from haystack.tools import ComponentTool\n",
"from haystack.components.websearch import DuckduckgoApiWebSearch\n",
"from duckduckgo_api_haystack import DuckduckgoApiWebSearch\n",
"\n",
"\n",
"def doc_to_string(documents) -> str:\n",
Expand Down