We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1734e9 commit b4f1fb7Copy full SHA for b4f1fb7
1 file changed
.github/workflows/run_tutorials.yml
@@ -98,5 +98,12 @@ jobs:
98
99
- name: Run the converted notebook
100
run: |
101
- # We add a prompt to confirm any user inputs in the HiTL notebook
102
- yes y | python ./tutorials/${{ matrix.notebook }}.py
+ NOTEBOOK="./tutorials/${{ matrix.notebook }}.py"
+ if [[ "${{ matrix.notebook }}" == "47_Human_in_the_Loop_Agent" ]]; then
103
+ # We add a prompt to confirm any user inputs in the HiTL notebook
104
+ yes y | python "$NOTEBOOK"
105
+ elif [[ "${{ matrix.notebook }}" == "48_Conversational_RAG" ]]; then
106
+ yes Q | python "$NOTEBOOK"
107
+ else
108
+ python "$NOTEBOOK"
109
+ fi
0 commit comments