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
3 changes: 2 additions & 1 deletion .github/workflows/run_tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,5 @@ jobs:

- name: Run the converted notebook
run: |
python ./tutorials/${{ matrix.notebook }}.py
# We add a prompt to confirm any user inputs in the HiTL notebook
yes y | python ./tutorials/${{ matrix.notebook }}.py
Comment on lines +101 to +102
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This was updated so the HiTL notebook would run even when prompting for input

13 changes: 12 additions & 1 deletion index.toml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ aliases = []
completion_time = "20 min"
created_at = 2025-04-22
dependencies = ["sentence-transformers>=4.1.0", "datasets", "accelerate"]
featured = true

[[tutorial]]
title = "Creating a Multi-Agent System with Haystack"
Expand All @@ -241,3 +240,15 @@ completion_time = "20 min"
created_at = 2025-08-04
dependencies = ["pillow", "pypdf", "pypdfium2", "sentence-transformers>=4.1.0"]
featured = true

[[tutorial]]
title = "Human-in-the-Loop with Haystack Agents"
description = "Learn how to use confirmation strategies to get user input before tool execution for safer, more controllable AI systems."
level = "advanced"
weight = 11
notebook = "47_Human_in_the_Loop_Agent.ipynb"
aliases = []
completion_time = "20 min"
created_at = 2025-10-30
dependencies = ["haystack-experimental>=0.14.2"]
featured = true
Loading